mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 10:44:18 +00:00
pythonPackages.uamqp: fix build on Darwin
This commit is contained in:
parent
d4dbaadce5
commit
58c4d8ad86
@ -9,6 +9,7 @@
|
||||
, fetchpatch
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, libcxxabi
|
||||
, openssl
|
||||
, Security
|
||||
, six
|
||||
@ -58,6 +59,10 @@ buildPythonPackage rec {
|
||||
enum34
|
||||
];
|
||||
|
||||
LDFLAGS = lib.optionals stdenv.isDarwin [
|
||||
"-L${lib.getLib libcxxabi}/lib"
|
||||
];
|
||||
|
||||
dontUseCmakeConfigure = true;
|
||||
|
||||
# Project has no tests
|
||||
|
Loading…
Reference in New Issue
Block a user