diff --git a/pkgs/applications/version-management/git-credential-keepassxc/default.nix b/pkgs/applications/version-management/git-credential-keepassxc/default.nix index 3a85cff455b8..f327c8a1e537 100644 --- a/pkgs/applications/version-management/git-credential-keepassxc/default.nix +++ b/pkgs/applications/version-management/git-credential-keepassxc/default.nix @@ -1,9 +1,6 @@ { lib -, stdenv , rustPlatform , fetchFromGitHub -, DiskArbitration -, Foundation , withNotification ? false , withYubikey ? false , withStrictCaller ? false @@ -23,8 +20,6 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-jBUp0jes4wtr8cmqceEBb6noqGkJUHbIfYgWOw5KMF4="; - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ DiskArbitration Foundation ]; - buildFeatures = [] ++ lib.optional withNotification "notification" ++ lib.optional withYubikey "yubikey" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8f3e57b21703..bdf7c09823b2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1231,9 +1231,7 @@ with pkgs; git-cliff = callPackage ../applications/version-management/git-cliff { }; - git-credential-keepassxc = darwin.apple_sdk_11_0.callPackage ../applications/version-management/git-credential-keepassxc { - inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation; - }; + git-credential-keepassxc = callPackage ../applications/version-management/git-credential-keepassxc { }; git-credential-manager = callPackage ../applications/version-management/git-credential-manager { };