dotnet: fix compilation on darwin

This commit is contained in:
Bernardo Meurer 2022-07-17 13:34:29 -07:00
parent e7fd74997f
commit d9a7945a7e

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