mcron: Fix attempt to set +s during install

This commit is contained in:
Will Dietz 2017-06-28 14:12:23 -05:00
parent d339dc762c
commit 7492873014

View File

@ -10,6 +10,11 @@ stdenv.mkDerivation rec {
patches = [ ./install-vixie-programs.patch ];
# don't attempt to chmod +s files in the nix store
postPatch = ''
substituteInPlace makefile.in --replace "rwxs" "rwx"
'';
buildInputs = [ guile which ed ];
doCheck = true;