remove osx stuff

main
Motiejus Jakštys 2024-03-13 13:24:45 +02:00
parent d7d416a5bb
commit d5d5c48f04
1 changed files with 5 additions and 15 deletions

View File

@ -1,5 +1,4 @@
{
stdenv,
lib,
fetchFromGitHub,
protobuf,
@ -12,9 +11,6 @@
testers,
turbo,
nix-update-script,
IOKit,
CoreServices,
CoreFoundation,
capnproto,
}:
rustPlatform.buildRustPackage rec {
@ -41,17 +37,11 @@ rustPlatform.buildRustPackage rec {
protobuf
capnproto
];
buildInputs =
[
openssl
fontconfig
rust-jemalloc-sys
]
++ lib.optionals stdenv.isDarwin [
IOKit
CoreServices
CoreFoundation
];
buildInputs = [
openssl
fontconfig
rust-jemalloc-sys
];
# Browser tests time out with chromium and google-chrome
doCheck = false;