mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
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:
parent
040cf06388
commit
d40123a247
@ -10,6 +10,10 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
configureFlags = if stdenv.isCygwin then "--enable-static" else "--enable-shared";
|
configureFlags = if stdenv.isCygwin then "--enable-static" else "--enable-shared";
|
||||||
|
|
||||||
|
crossAttrs = {
|
||||||
|
dontStrip = true;
|
||||||
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://librsync.sourceforge.net/;
|
homepage = http://librsync.sourceforge.net/;
|
||||||
license = "LGPLv2+";
|
license = "LGPLv2+";
|
||||||
|
Loading…
Reference in New Issue
Block a user