genpass: add missing zlib dependency

This commit is contained in:
jacobi petrucciani
2024-12-30 21:48:20 -05:00
parent c49743669a
commit fb4eb8a49b
2 changed files with 4 additions and 11 deletions
+3 -8
View File
@@ -1,11 +1,8 @@
{
lib,
stdenv,
fetchgit,
rustPlatform,
CoreFoundation,
libiconv,
Security,
zlib,
}:
rustPlatform.buildRustPackage rec {
pname = "genpass";
@@ -19,10 +16,8 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-ls3tzZ+gtZQlObmbtwJDq6N/f5nY+Ps7RL5R/fR5Vgg=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
CoreFoundation
libiconv
Security
buildInputs = [
zlib
];
meta = with lib; {
+1 -3
View File
@@ -1804,9 +1804,7 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
genpass = callPackage ../tools/security/genpass {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
};
genpass = callPackage ../tools/security/genpass { };
gammaray = qt6Packages.callPackage ../development/tools/gammaray { };