From 7492873014f64ab52bb945f8335364830530dc8b Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 28 Jun 2017 14:12:23 -0500 Subject: mcron: Fix attempt to set +s during install --- pkgs/tools/system/mcron/default.nix | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'pkgs/tools') diff --git a/pkgs/tools/system/mcron/default.nix b/pkgs/tools/system/mcron/default.nix index a90d6afdc61f..5863504c7040 100644 --- a/pkgs/tools/system/mcron/default.nix +++ b/pkgs/tools/system/mcron/default.nix @@ -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; -- cgit 1.4.1