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
This commit is contained in:
Lluís Batlle i Rossell 2012-05-25 17:52:45 +00:00
parent 040cf06388
commit d40123a247

View File

@ -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+";