Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / dns / doh-proxy-rust / default.nix
blob244ec35a676853d81740882946b08697eef18599
1 { lib, rustPlatform, fetchCrate, stdenv, Security, libiconv, nixosTests }:
3 rustPlatform.buildRustPackage rec {
4   pname = "doh-proxy-rust";
5   version = "0.9.11";
7   src = fetchCrate {
8     inherit version;
9     crateName = "doh-proxy";
10     hash = "sha256-h2LwxqyyBPAXRr6XOmcLEmbet063kkM1ledULp3M2ek=";
11   };
13   cargoHash = "sha256-eXPAn2ziSdciZa6YrOIa7y7Lms681X+yVAD9HrvsZHg=";
15   buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
17   passthru.tests = { inherit (nixosTests) doh-proxy-rust; };
19   meta = with lib; {
20     homepage = "https://github.com/jedisct1/doh-server";
21     description = "Fast, mature, secure DoH server proxy written in Rust";
22     license = with licenses; [ mit ];
23     maintainers = with maintainers; [ stephank ];
24     mainProgram = "doh-proxy";
25   };