Merge pull request #107972 from rb2k/zchunk_support
librepo: enable zchunk support on darwin
This commit is contained in:
commit
6c71f432bd
@ -38,9 +38,8 @@ stdenv.mkDerivation rec {
|
||||
curl
|
||||
check
|
||||
gpgme
|
||||
]
|
||||
# zchunk currently has issues compiling in darwin, fine in linux
|
||||
++ stdenv.lib.optional stdenv.isLinux zchunk;
|
||||
zchunk
|
||||
];
|
||||
|
||||
# librepo/fastestmirror.h includes curl/curl.h, and pkg-config specfile refers to others in here
|
||||
propagatedBuildInputs = [
|
||||
@ -49,9 +48,7 @@ stdenv.mkDerivation rec {
|
||||
libxml2
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DPYTHON_DESIRED=${stdenv.lib.substring 0 1 python.pythonVersion}"
|
||||
] ++ stdenv.lib.optional stdenv.isDarwin "-DWITH_ZCHUNK=OFF";
|
||||
cmakeFlags = [ "-DPYTHON_DESIRED=${stdenv.lib.substring 0 1 python.pythonVersion}" ];
|
||||
|
||||
postFixup = ''
|
||||
moveToOutput "lib/${python.libPrefix}" "$py"
|
||||
|
Loading…
Reference in New Issue
Block a user