forked from mirrors/nixpkgs
librsync: Remove crossAttrs
This commit is contained in:
parent
507a64cd8d
commit
01b274ce0d
pkgs/development/libraries/librsync
|
@ -12,9 +12,7 @@ stdenv.mkDerivation {
|
|||
|
||||
configureFlags = if stdenv.isCygwin then "--enable-static" else "--enable-shared";
|
||||
|
||||
crossAttrs = {
|
||||
dontStrip = true;
|
||||
};
|
||||
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
||||
|
||||
meta = {
|
||||
homepage = http://librsync.sourceforge.net/;
|
||||
|
|
|
@ -14,9 +14,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ perl zlib bzip2 popt ];
|
||||
|
||||
crossAttrs = {
|
||||
dontStrip = true;
|
||||
};
|
||||
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://librsync.sourceforge.net/;
|
||||
|
|
Loading…
Reference in a new issue