mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
Merge pull request #187475 from centromere/fix-uamqp-darwin
This commit is contained in:
commit
921b28fa6e
1 changed files with 5 additions and 0 deletions
|
@ -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 a new issue