1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

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;