From d5d5c48f04a5000cc0d7310916fefc64ebf2669f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 13 Mar 2024 13:24:45 +0200 Subject: [PATCH] remove osx stuff --- pkgs/turbo.nix | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/pkgs/turbo.nix b/pkgs/turbo.nix index 604d29a..a241c9b 100644 --- a/pkgs/turbo.nix +++ b/pkgs/turbo.nix @@ -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;