3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #181890 from lovesegfault/dotnet-darwin

dotnet: fix compilation on darwin
This commit is contained in:
Bernardo Meurer 2022-07-17 13:53:15 -07:00 committed by GitHub
commit 3a674b1ba5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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