Merge pull request #205866 from uninsane/pr-trust-dns
trust-dns: init at 0.22.0
This commit is contained in:
commit
fdc0bb1113
2 changed files with 35 additions and 0 deletions
33
pkgs/servers/dns/trust-dns/default.nix
Normal file
33
pkgs/servers/dns/trust-dns/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, openssl
|
||||||
|
, pkg-config
|
||||||
|
, rustPlatform
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "trust-dns";
|
||||||
|
version = "0.22.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bluejekyll";
|
||||||
|
repo = "trust-dns";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-b9tK1JbTwB3ZuRPh0wb3cOFj9dMW7URXIaFzUq0Yipw=";
|
||||||
|
};
|
||||||
|
cargoHash = "sha256-mpobdeTRWJzIEmhwtcM6UE66qRD5ot/0yLeQM6Tec+0=";
|
||||||
|
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
# tests expect internet connectivity to query real nameservers like 8.8.8.8
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A Rust based DNS client, server, and resolver";
|
||||||
|
homepage = "https://trust-dns.org/";
|
||||||
|
maintainers = with maintainers; [ colinsane ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ asl20 mit ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -26460,6 +26460,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
trust-dns = callPackage ../servers/dns/trust-dns { };
|
||||||
|
|
||||||
tunctl = callPackage ../os-specific/linux/tunctl { };
|
tunctl = callPackage ../os-specific/linux/tunctl { };
|
||||||
|
|
||||||
twa = callPackage ../tools/networking/twa { };
|
twa = callPackage ../tools/networking/twa { };
|
||||||
|
|
Loading…
Reference in a new issue