mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
findomain: fix darwin build (#123019)
This commit is contained in:
parent
f91dcdd7b5
commit
2ff319e055
@ -4,6 +4,7 @@
|
||||
, rustPlatform
|
||||
, installShellFiles
|
||||
, perl
|
||||
, libiconv
|
||||
, Security
|
||||
}:
|
||||
|
||||
@ -21,7 +22,7 @@ rustPlatform.buildRustPackage rec {
|
||||
cargoSha256 = "sha256-FDiIM1LlWEFmiIvebdCsznkB7egspNKhY6xUXB838g8=";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles perl ];
|
||||
buildInputs = lib.optional stdenv.isDarwin Security;
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||
|
||||
postInstall = ''
|
||||
installManPage ${pname}.1
|
||||
|
Loading…
Reference in New Issue
Block a user