nixpkgs/pkgs/tools/networking/dnscrypt-proxy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
617 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-07-10 17:31:08 +00:00
buildGoModule rec {
pname = "dnscrypt-proxy";
2023-08-12 07:25:08 +00:00
version = "2.1.5";
2018-07-10 17:31:08 +00:00
vendorSha256 = null;
2018-07-10 17:31:08 +00:00
doCheck = false;
2018-07-10 17:31:08 +00:00
src = fetchFromGitHub {
owner = "DNSCrypt";
2018-07-10 17:31:08 +00:00
repo = "dnscrypt-proxy";
rev = version;
2023-08-12 07:25:08 +00:00
sha256 = "sha256-A9Cu4wcJxrptd9CpgXw4eyMX2nmNAogYBRDeeAjpEZY=";
2018-07-10 17:31:08 +00:00
};
meta = with lib; {
2018-07-10 17:44:34 +00:00
description = "A tool that provides secure DNS resolution";
2018-07-10 17:31:08 +00:00
license = licenses.isc;
homepage = "https://dnscrypt.info/";
maintainers = with maintainers; [ atemu waynr ];
mainProgram = "dnscrypt-proxy";
2018-07-10 17:31:08 +00:00
platforms = with platforms; unix;
};
}