mcron: Fix attempt to set +s during install
This commit is contained in:
parent
d339dc762c
commit
7492873014
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue