Skip to content

Commit

Permalink
librsync: Remove crossAttrs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ericson2314 committed May 10, 2018
1 parent 507a64c commit 01b274c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions pkgs/development/libraries/librsync/0.9.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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/;
Expand Down
4 changes: 1 addition & 3 deletions pkgs/development/libraries/librsync/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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/;
Expand Down

0 comments on commit 01b274c

Please sign in to comment.