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
wip/yesman
Lluís Batlle i Rossell 12 years ago
parent 040cf06388
commit d40123a247
  1. 4
      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+";

Loading…
Cancel
Save