
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful. Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com> Co-authored-by: dotlambda <nix@dotlambda.de>
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
libsodium,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "encrypted-dns-server";
|
|
version = "0.9.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DNSCrypt";
|
|
repo = "encrypted-dns-server";
|
|
tag = version;
|
|
hash = "sha256-un7607HQ7s7G2GPTmYVT3wK/ePLNVyV+A2mtKt0YGsw=";
|
|
};
|
|
|
|
cargoHash = "sha256-qhY1LgtV0Kmj/at9EG7Y+swN1Oy0/SzRCr7U8xVh8KA=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libsodium ];
|
|
|
|
env = {
|
|
SODIUM_USE_PKG_CONFIG = true;
|
|
};
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
doInstallCheck = true;
|
|
versionCheckProgram = "${placeholder "out"}/bin/encrypted-dns";
|
|
versionCheckProgramArg = "--version";
|
|
|
|
meta = {
|
|
changelog = "https://github.com/DNSCrypt/encrypted-dns-server/releases/tag/${version}";
|
|
description = "Easy to install, high-performance, zero maintenance proxy to run an encrypted DNS server";
|
|
homepage = "https://github.com/DNSCrypt/encrypted-dns-server";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ paepcke ];
|
|
mainProgram = "encrypted-dns";
|
|
};
|
|
}
|