diff --git a/pkgs/tools/security/keyscope/default.nix b/pkgs/by-name/ke/keyscope/package.nix similarity index 82% rename from pkgs/tools/security/keyscope/default.nix rename to pkgs/by-name/ke/keyscope/package.nix index 32f9fa842302..35cc09b98f71 100644 --- a/pkgs/tools/security/keyscope/default.nix +++ b/pkgs/by-name/ke/keyscope/package.nix @@ -1,15 +1,10 @@ { lib, - DiskArbitration, fetchFromGitHub, - Foundation, gitUpdater, - IOKit, openssl, pkg-config, rustPlatform, - Security, - stdenv, }: rustPlatform.buildRustPackage rec { @@ -27,14 +22,7 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; - buildInputs = - [ openssl ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ - DiskArbitration - Foundation - IOKit - Security - ]; + buildInputs = [ openssl ]; # build script tries to get information from git postPatch = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3327d4a79f0b..fa376aafbd96 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3907,10 +3907,6 @@ with pkgs; keybase-gui = callPackage ../tools/security/keybase/gui.nix { }; - keyscope = callPackage ../tools/security/keyscope { - inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation IOKit Security; - }; - keystore-explorer = callPackage ../applications/misc/keystore-explorer { jdk = jdk11; };