bandwhich: move to by-name

This commit is contained in:
Noa Aarts
2024-12-12 20:07:41 +01:00
committed by Weijia Wang
parent 5802f55b0b
commit a18cb85d6d
2 changed files with 3 additions and 6 deletions
@@ -3,8 +3,9 @@
stdenv,
fetchFromGitHub,
rustPlatform,
Security,
installShellFiles,
darwin,
}:
rustPlatform.buildRustPackage rec {
@@ -28,7 +29,7 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;
buildInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Security;
# 10 passed; 47 failed https://hydra.nixos.org/build/148943783/nixlog/1
doCheck = !stdenv.hostPlatform.isDarwin;
-4
View File
@@ -1992,10 +1992,6 @@ with pkgs;
libssl = openssl;
};
bandwhich = callPackage ../tools/networking/bandwhich {
inherit (darwin.apple_sdk.frameworks) Security;
};
base16-builder = callPackage ../misc/base16-builder { };
babelfish = callPackage ../shells/fish/babelfish.nix { };