2022-01-25 03:21:06 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate, stdenv, Security, libiconv, nixosTests }:
|
2021-04-12 18:23:04 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "doh-proxy-rust";
|
2023-03-04 12:14:45 +00:00
|
|
|
version = "0.9.8";
|
2021-04-12 18:23:04 +00:00
|
|
|
|
2021-10-08 15:17:17 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit version;
|
|
|
|
crateName = "doh-proxy";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-+Z2eneEK6nhcJEKRa1VIolCTZ8to2mMQ8Ik7WEH+1w0=";
|
2021-04-12 18:23:04 +00:00
|
|
|
};
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
cargoHash = "sha256-nlKzVQeLg3/nBIkD7QoBUWC93m9BiJrybf13Y/ns9gA=";
|
2021-04-12 18:23:04 +00:00
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
|
|
|
|
|
2022-01-25 03:21:06 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) doh-proxy-rust; };
|
|
|
|
|
2021-04-12 18:23:04 +00:00
|
|
|
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 ];
|
2021-10-08 15:17:17 +00:00
|
|
|
mainProgram = "doh-proxy";
|
2021-04-12 18:23:04 +00:00
|
|
|
};
|
|
|
|
}
|