infrastructure/nixos/pkgs/roundcube-swipe/default.nix
Victor 7242ccf9ae
All checks were successful
Plex Update / update (push) Successful in 9s
Lint / lint (push) Successful in 2s
add swipe action
2023-06-16 09:05:38 +02:00

18 lines
481 B
Nix

{ runCommand, fetchzip }:
let
roundcubePlugin = { pname, version, src }:
runCommand "roundcube-plugin-${pname}-${version}" { } ''
mkdir -p $out/plugins/
cp -r ${src} $out/plugins/${pname}
'';
in roundcubePlugin rec {
pname = "roundcube-swipe";
version = "0.5";
src = fetchzip {
url =
"https://github.com/johndoh/roundcube-swipe/archive/refs/tags/${version}.tar.gz";
sha256 = "sha256-ExTnYE4uF8E+Fatz7fL+vVmxgLxawEI30Rw2uAWNCNw=";
};
}