Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / dns / trust-dns / default.nix
blob09b7ebea4d65a9e1052bf0fa9df33c425d93db47
1 { lib
2 , fetchFromGitHub
3 , openssl
4 , pkg-config
5 , rustPlatform
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "trust-dns";
10   version = "0.24.1";
12   src = fetchFromGitHub {
13     owner = "hickory-dns";
14     repo = "hickory-dns";
15     rev = "v${version}";
16     hash = "sha256-szq21RuRmkhAfHlzhGQYpwjiIRkavFCPETOt+6TxhP4=";
17   };
18   cargoHash = "sha256-zGn5vHwsHgpkgOr30QiyScqnfXjH55LQIVtxoUUox64=";
20   buildInputs = [ openssl ];
21   nativeBuildInputs = [ pkg-config ];
23   # tests expect internet connectivity to query real nameservers like 8.8.8.8
24   doCheck = false;
26   meta = with lib; {
27     description = "Rust based DNS client, server, and resolver";
28     homepage = "https://trust-dns.org/";
29     maintainers = with maintainers; [ colinsane ];
30     platforms = platforms.linux;
31     license = with licenses; [ asl20 mit ];
32     mainProgram = "hickory-dns";
33   };