move pkgs
This commit is contained in:
parent
84f07ef08f
commit
af2b5a14f2
14 changed files with 1 additions and 1 deletions
20
pkgs/roundcube-swipe/default.nix
Normal file
20
pkgs/roundcube-swipe/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ runCommand, fetchFromGitHub }:
|
||||
let
|
||||
roundcubePlugin = { version, src, ... }:
|
||||
|
||||
runCommand "roundcube-plugin-swipe-${version}" { } ''
|
||||
mkdir -p $out/plugins/
|
||||
cp -r ${src} $out/plugins/swipe
|
||||
'';
|
||||
in
|
||||
roundcubePlugin rec {
|
||||
pname = "roundcube-swipe";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "johndoh";
|
||||
repo = pname;
|
||||
rev = "de96f82183bc593d879c335e6614fa983d51abfc";
|
||||
sha256 = "sha256-vrMSvGwUzufSFDsUvUSL9JLR/+GtWdebVqgKiXMOOq4=";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue