1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #29108 from Gerschtli/update/slock-patches

slock: adds ability to add custom patches
This commit is contained in:
Jörg Thalheim 2017-09-24 10:19:31 +01:00 committed by GitHub
commit a75174ae4c
2 changed files with 4 additions and 2 deletions

View file

@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
installFlags = "DESTDIR=\${out} PREFIX=";
patchPhase = "sed -i '/chmod u+s/d' Makefile";
postPatch = "sed -i '/chmod u+s/d' Makefile";
preBuild = optionalString (conf != null) ''
cp ${writeText "config.def.h" conf} config.def.h

View file

@ -19104,7 +19104,9 @@ with pkgs;
seafile-shared = callPackage ../misc/seafile-shared { };
slock = callPackage ../misc/screensavers/slock { };
slock = callPackage ../misc/screensavers/slock {
conf = config.slock.conf or null;
};
smokeping = callPackage ../tools/networking/smokeping {
inherit fping rrdtool;