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

25 lines
601 B
Nix
Raw Normal View History

2018-07-10 17:31:08 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "dnscrypt-proxy2";
2020-01-25 16:25:12 +00:00
version = "2.0.36";
2018-07-10 17:31:08 +00:00
goPackagePath = "github.com/jedisct1/dnscrypt-proxy";
src = fetchFromGitHub {
owner = "jedisct1";
repo = "dnscrypt-proxy";
rev = version;
2020-01-25 16:25:12 +00:00
sha256 = "05pk0fl4cyh69lfssvx9prd2gg0akw1l14b4q76zfhh9vc47z6x1";
2018-07-10 17:31:08 +00:00
};
meta = with stdenv.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; [ waynr ];
platforms = with platforms; unix;
};
}