mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 07:04:25 +00:00
Merge pull request #103131 from marsam/fix-dogdns-darwin
dogdns: fix build on darwin
This commit is contained in:
commit
5fff64bc01
@ -3,6 +3,8 @@
|
|||||||
, rustPlatform
|
, rustPlatform
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, openssl
|
, openssl
|
||||||
|
, Security
|
||||||
|
, installShellFiles
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
@ -16,11 +18,17 @@ rustPlatform.buildRustPackage rec {
|
|||||||
sha256 = "088ib0sncv0vrvnqfvxf5zc79v7pnxd2cmgp4378r6pmgax9z9zy";
|
sha256 = "088ib0sncv0vrvnqfvxf5zc79v7pnxd2cmgp4378r6pmgax9z9zy";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ installShellFiles ]
|
||||||
buildInputs = [ openssl ];
|
++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
||||||
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
|
||||||
|
++ stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
cargoSha256 = "08scc6vh703245rg3xkffhalrk5pisd0wg54fd49d7gdbyjivgi6";
|
cargoSha256 = "08scc6vh703245rg3xkffhalrk5pisd0wg54fd49d7gdbyjivgi6";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installShellCompletion completions/dog.{bash,fish,zsh}
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Command-line DNS client";
|
description = "Command-line DNS client";
|
||||||
homepage = "https://dns.lookup.dog";
|
homepage = "https://dns.lookup.dog";
|
||||||
|
@ -3355,7 +3355,9 @@ in
|
|||||||
|
|
||||||
dog = callPackage ../tools/system/dog { };
|
dog = callPackage ../tools/system/dog { };
|
||||||
|
|
||||||
dogdns = callPackage ../tools/networking/dogdns { };
|
dogdns = callPackage ../tools/networking/dogdns {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
dosfstools = callPackage ../tools/filesystems/dosfstools { };
|
dosfstools = callPackage ../tools/filesystems/dosfstools { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user