summary refs log tree commit diff
path: root/pkgs/development/libraries/talloc/default.nix
diff options
context:
space:
mode:
authorFlorian Friesdorf <flo@chaoflow.net>2011-09-21 23:31:51 +0000
committerFlorian Friesdorf <flo@chaoflow.net>2011-09-21 23:31:51 +0000
commitcadbee1ab10cb145fc0961ef2cc20c0a7207f94e (patch)
treed6f09db9bdb876beaae3c3f7198330d9f05802d5 /pkgs/development/libraries/talloc/default.nix
parentad3d180d6f30254f9971555c2418c88a523638bc (diff)
downloadnixpkgs-cadbee1ab10cb145fc0961ef2cc20c0a7207f94e.tar
nixpkgs-cadbee1ab10cb145fc0961ef2cc20c0a7207f94e.tar.gz
nixpkgs-cadbee1ab10cb145fc0961ef2cc20c0a7207f94e.tar.bz2
nixpkgs-cadbee1ab10cb145fc0961ef2cc20c0a7207f94e.tar.lz
nixpkgs-cadbee1ab10cb145fc0961ef2cc20c0a7207f94e.tar.xz
nixpkgs-cadbee1ab10cb145fc0961ef2cc20c0a7207f94e.tar.zst
nixpkgs-cadbee1ab10cb145fc0961ef2cc20c0a7207f94e.zip
indeed fix talloc build on darwin
svn path=/nixpkgs/trunk/; revision=29431
Diffstat (limited to 'pkgs/development/libraries/talloc/default.nix')
-rw-r--r--pkgs/development/libraries/talloc/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/talloc/default.nix b/pkgs/development/libraries/talloc/default.nix
index 9a37b106eaa..54db07d0de8 100644
--- a/pkgs/development/libraries/talloc/default.nix
+++ b/pkgs/development/libraries/talloc/default.nix
@@ -10,7 +10,8 @@ stdenv.mkDerivation rec {
 
   configureFlags = "--enable-talloc-compat1 --enable-largefile";
   
-  patchPhase = if stdenv.isDarwin then ''
+  # https://bugzilla.samba.org/show_bug.cgi?id=7000
+  postConfigure = if stdenv.isDarwin then ''
     substituteInPlace "Makefile" --replace "SONAMEFLAG = #" "SONAMEFLAG = -install_name"
   '' else "";