genpass: add missing zlib dependency
This commit is contained in:
@@ -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; {
|
||||
|
||||
@@ -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 { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user