summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2017-06-28 14:23:57 -0500
committerWill Dietz <w@wdtz.org>2017-06-28 14:31:46 -0500
commit0d871bd108b4c10ddfa9a6ab845d0088c3bbde3d (patch)
tree5cb0e3157f4cc92f63521d29ec779c4bcb4d6b1d
parent09d85c49c47c10f200ad377fa9940e613e016292 (diff)
downloadnixpkgs-0d871bd108b4c10ddfa9a6ab845d0088c3bbde3d.tar
nixpkgs-0d871bd108b4c10ddfa9a6ab845d0088c3bbde3d.tar.gz
nixpkgs-0d871bd108b4c10ddfa9a6ab845d0088c3bbde3d.tar.bz2
nixpkgs-0d871bd108b4c10ddfa9a6ab845d0088c3bbde3d.tar.lz
nixpkgs-0d871bd108b4c10ddfa9a6ab845d0088c3bbde3d.tar.xz
nixpkgs-0d871bd108b4c10ddfa9a6ab845d0088c3bbde3d.tar.zst
nixpkgs-0d871bd108b4c10ddfa9a6ab845d0088c3bbde3d.zip
libutempter: Fixup unsupported permissions here as well
-rw-r--r--pkgs/development/libraries/libutempter/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libutempter/default.nix b/pkgs/development/libraries/libutempter/default.nix
index 8481f857b2c..d54c82ae7f2 100644
--- a/pkgs/development/libraries/libutempter/default.nix
+++ b/pkgs/development/libraries/libutempter/default.nix
@@ -13,6 +13,10 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ glib ];
 
+  prePatch = ''
+    substituteInPlace Makefile --replace 2711 0711
+  '';
+
   installFlags = [
     "libdir=\${out}/lib"
     "libexecdir=\${out}/lib"