dogdns: install completions
This commit is contained in:
parent
ae17a85324
commit
f4e11121fe
@ -4,6 +4,7 @@
|
|||||||
, pkg-config
|
, pkg-config
|
||||||
, openssl
|
, openssl
|
||||||
, Security
|
, Security
|
||||||
|
, installShellFiles
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
@ -17,12 +18,17 @@ rustPlatform.buildRustPackage rec {
|
|||||||
sha256 = "088ib0sncv0vrvnqfvxf5zc79v7pnxd2cmgp4378r6pmgax9z9zy";
|
sha256 = "088ib0sncv0vrvnqfvxf5zc79v7pnxd2cmgp4378r6pmgax9z9zy";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
nativeBuildInputs = [ installShellFiles ]
|
||||||
|
++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
||||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
++ 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";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user