You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
283 B
13 lines
283 B
{ roundcubePlugins, fetchFromGitHub }:
|
|
|
|
roundcubePlugins.roundcubePlugin rec {
|
|
pname = "custom_from";
|
|
version = "1.6.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "r3c";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-fCQbDf8GcHAgo8nft4uYHZDk45VZDY+fgyVrYjGLuu4=";
|
|
};
|
|
}
|
|
|