2022-01-23 21:08:10 +01:00
|
|
|
{ lib, rustPlatform, fetchCrate, stdenv, Security, libiconv, nixosTests }:
|
2020-08-18 08:36:13 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "doh-proxy-rust";
|
2023-05-05 17:32:20 +02:00
|
|
|
version = "0.9.9";
|
2020-08-18 08:36:13 +02:00
|
|
|
|
2021-10-07 15:29:34 +02:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit version;
|
|
|
|
crateName = "doh-proxy";
|
2023-05-05 17:32:20 +02:00
|
|
|
sha256 = "sha256-KvEayC+aY8aC5fSVIV9urNwLJcIfDMaAU+XdlGSmYRI=";
|
2020-08-18 08:36:13 +02:00
|
|
|
};
|
|
|
|
|
2023-05-05 17:32:20 +02:00
|
|
|
cargoHash = "sha256-eoC90ht9cbMLkPN3S4jxZipbFoZDTU7pIr6GRagGlJE=";
|
2020-08-18 08:36:13 +02:00
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
|
|
|
|
|
2022-01-23 21:08:10 +01:00
|
|
|
passthru.tests = { inherit (nixosTests) doh-proxy-rust; };
|
|
|
|
|
2020-08-18 08:36:13 +02: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-07 15:29:34 +02:00
|
|
|
mainProgram = "doh-proxy";
|
2020-08-18 08:36:13 +02:00
|
|
|
};
|
|
|
|
}
|