forked from mirrors/nixpkgs
Merge pull request #162716 from rembo10/roundcube-plugin-custom-from
roundcubePlugins.custom_from: init at 1.6.6
This commit is contained in:
commit
2255f28d87
11
pkgs/servers/roundcube/plugins/custom_from/default.nix
Normal file
11
pkgs/servers/roundcube/plugins/custom_from/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ roundcubePlugin, fetchzip }:
|
||||
|
||||
roundcubePlugin rec {
|
||||
pname = "custom_from";
|
||||
version = "1.6.6";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/r3c/custom_from/archive/refs/tags/${version}.zip";
|
||||
hash = "sha256-QvMYwFWY0BZOkzhDtW7XJ77i5mVkDNAiN4JBdsCuUy0=";
|
||||
};
|
||||
}
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
carddav = callPackage ./carddav { };
|
||||
contextmenu = callPackage ./contextmenu { };
|
||||
custom_from = callPackage ./custom_from { };
|
||||
persistent_login = callPackage ./persistent_login { };
|
||||
thunderbird_labels = callPackage ./thunderbird_labels { };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue