mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
dotnet: fix compilation on darwin
This commit is contained in:
parent
e7fd74997f
commit
d9a7945a7e
1 changed files with 2 additions and 5 deletions
|
@ -47,14 +47,11 @@ stdenv.mkDerivation rec {
|
|||
libunwind
|
||||
libuuid
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isLinux [
|
||||
lttng-ust_2_12
|
||||
]);
|
||||
] ++ lib.optional stdenv.isLinux lttng-ust_2_12);
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoPatchelfHook
|
||||
makeWrapper
|
||||
];
|
||||
] ++ lib.optional stdenv.isLinux autoPatchelfHook;
|
||||
|
||||
buildInputs = [
|
||||
stdenv.cc.cc
|
||||
|
|
Loading…
Reference in a new issue