nixpkgs/pkgs/servers/roundcube/plugins/contextmenu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
294 B
Nix
Raw Normal View History

{ roundcubePlugin, fetchzip }:
roundcubePlugin rec {
pname = "contextmenu";
version = "3.3.1";
src = fetchzip {
url = "https://github.com/johndoh/roundcube-contextmenu/archive/refs/tags/${version}.tar.gz";
sha256 = "0aya3nv8jwfvd9rlvxfxnyfpdcpw858745xal362l3zzkbkhcrmb";
};
}