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

27 lines
583 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-07-10 17:31:08 +00:00
buildGoModule rec {
pname = "dnscrypt-proxy2";
2021-01-18 14:35:56 +00:00
version = "2.0.45";
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;
2021-01-18 14:35:56 +00:00
sha256 = "sha256-BvCxrFMRWPVVjK2sDlVbJKC/YK/bi4lBquIsdwOFXkw=";
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 ];
2018-07-10 17:31:08 +00:00
platforms = with platforms; unix;
};
}