nixpkgs/pkgs/servers/roundcube/plugins/persistent_login/default.nix
Maximilian Bosch 2820e1df5c roundcubePlugins: init
This meta-package is supposed to contain third-party roundcube plugins
such as `persistent_login` that will be linked into the roundcube
derivation.
2019-02-08 13:35:09 +00:00

14 lines
290 B
Nix

{ roundcubePlugin, fetchFromGitHub }:
roundcubePlugin rec {
pname = "persistent_login";
version = "5.1.0";
src = fetchFromGitHub {
owner = "mfreiholz";
repo = pname;
rev = "version-${version}";
sha256 = "1k2jgbshwig8q5l440y59pgwbfbc0pdrjbpihba834a4pm0y6anl";
};
}