librsync: Remove crossAttrs

wip/yesman
John Ericson 6 years ago
parent 507a64cd8d
commit 01b274ce0d
  1. 4
      pkgs/development/libraries/librsync/0.9.nix
  2. 4
      pkgs/development/libraries/librsync/default.nix

@ -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…
Cancel
Save