librsync: Remove crossAttrs

This commit is contained in:
John Ericson 2018-05-10 13:08:07 -04:00
parent 507a64cd8d
commit 01b274ce0d
2 changed files with 2 additions and 6 deletions

View file

@ -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/;

View file

@ -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/;