mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
mcron: Fix attempt to set +s during install
This commit is contained in:
parent
d339dc762c
commit
7492873014
@ -10,6 +10,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [ ./install-vixie-programs.patch ];
|
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 ];
|
buildInputs = [ guile which ed ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user