Author: viric
Date: Fri May 25 17:52:45 2012
New Revision: 34248
URL: https://nixos.org/websvn/nix/?rev=34248&sc=1

Log:
Making librsync not stripped by native strip; it breaks the static lib.

It's the case of mingw64 by default, it seems.

Modified:
   nixpkgs/trunk/pkgs/development/libraries/librsync/default.nix

Modified: nixpkgs/trunk/pkgs/development/libraries/librsync/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/librsync/default.nix       Fri May 
25 17:19:07 2012        (r34247)
+++ nixpkgs/trunk/pkgs/development/libraries/librsync/default.nix       Fri May 
25 17:52:45 2012        (r34248)
@@ -10,6 +10,10 @@
 
   configureFlags = if stdenv.isCygwin then "--enable-static" else 
"--enable-shared";
 
+  crossAttrs = {
+    dontStrip = true;
+  };
+
   meta = {
     homepage = http://librsync.sourceforge.net/;
     license = "LGPLv2+";
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to