mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
librsync: Remove crossAttrs
This commit is contained in:
parent
507a64cd8d
commit
01b274ce0d
@ -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 New Issue
Block a user