lol

cargo-spellcheck: move to pkgs/by-name (#356513)

authored by

Alex Martens and committed by
GitHub
afd9ca8b b3e823fc

+2 -6
+2 -3
pkgs/development/tools/rust/cargo-spellcheck/default.nix pkgs/by-name/ca/cargo-spellcheck/package.nix
··· 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 4 , stdenv 5 - , Security 6 - , SystemConfiguration 5 + , apple-sdk_11 7 6 }: 8 7 9 8 rustPlatform.buildRustPackage rec { ··· 21 20 22 21 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 23 22 24 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security SystemConfiguration ]; 23 + buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 25 24 26 25 preCheck = "HOME=$(mktemp -d)"; 27 26
-3
pkgs/top-level/all-packages.nix
··· 6957 6957 cargo-rdme = callPackage ../by-name/ca/cargo-rdme/package.nix { 6958 6958 inherit (darwin.apple_sdk.frameworks) Security; 6959 6959 }; 6960 - cargo-spellcheck = callPackage ../development/tools/rust/cargo-spellcheck { 6961 - inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 6962 - }; 6963 6960 cargo-udeps = callPackage ../development/tools/rust/cargo-udeps { 6964 6961 inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration; 6965 6962 };