chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / hi / hickory-dns / package.nix
blobcf6226089097b51aa7e906361a82029480fbd5d9
1 { lib
2 , fetchFromGitHub
3 , openssl
4 , pkg-config
5 , rustPlatform
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "hickory-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-LcMjHHEuDlhSfDXGIrSMXewraSxEgRw2g2DOoH4i5RU=";
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://hickory-dns.org/";
29     maintainers = with maintainers; [ colinsane ];
30     platforms = platforms.linux;
31     license = with licenses; [ asl20 mit ];
32     mainProgram = "hickory-dns";
33   };