summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-05-25 17:52:45 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-05-25 17:52:45 +0000
commitd40123a24708b3e93ca49257434afeb390cec8be (patch)
tree2315ab63b32cc2d763fbdbe95096893b4cca60e5 /pkgs
parent040cf06388b1d5d94c0087c0243fd8fcf2502dce (diff)
Making librsync not stripped by native strip; it breaks the static lib.
It's the case of mingw64 by default, it seems. svn path=/nixpkgs/trunk/; revision=34248
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/librsync/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/libraries/librsync/default.nix b/pkgs/development/libraries/librsync/default.nix
index a70a61042e00..41445b841435 100644
--- a/pkgs/development/libraries/librsync/default.nix
+++ b/pkgs/development/libraries/librsync/default.nix
@@ -10,6 +10,10 @@ stdenv.mkDerivation {
configureFlags = if stdenv.isCygwin then "--enable-static" else "--enable-shared";
+ crossAttrs = {
+ dontStrip = true;
+ };
+
meta = {
homepage = http://librsync.sourceforge.net/;
license = "LGPLv2+";