summary refs log tree commit diff
path: root/pkgs/servers/dns/doh-proxy-rust/default.nix
blob: ddde393c5f6b6532724e8736f38b725b78fe73ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv, rustPlatform, fetchFromGitHub, Security, libiconv }:

rustPlatform.buildRustPackage rec {
  pname = "doh-proxy-rust";
  version = "0.3.8";

  src = fetchFromGitHub {
    owner = "jedisct1";
    repo = "doh-server";
    rev = version;
    sha256 = "0jksdrji06ykk5cj6i8ydcjhagjwb2xz5bjs6qsw044p8a2hsq53";
  };

  cargoSha256 = "0i7rga5w4jh7zia4v2zkbmbc683p69z5z05ksl40jcmzvp29p3fj";
  cargoPatches = [ ./cargo-lock.patch ];

  buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];

  doCheck = false; # no test suite, skip useless compile step

  meta = with lib; {
    homepage = "https://github.com/jedisct1/doh-server";
    description = "Fast, mature, secure DoH server proxy written in Rust";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ stephank ];
  };
}