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

25 lines
607 B
Nix
Raw Normal View History

2018-07-10 18:31:08 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "dnscrypt-proxy2";
2020-03-28 17:21:14 +00:00
version = "2.0.42";
2018-07-10 18:31:08 +01:00
goPackagePath = "github.com/jedisct1/dnscrypt-proxy";
src = fetchFromGitHub {
owner = "jedisct1";
repo = "dnscrypt-proxy";
rev = version;
2020-03-28 17:21:14 +00:00
sha256 = "1v4n0pkwcilxm4mnj4fsd4gf8pficjj40jnmfkiwl7ngznjxwkyw";
2018-07-10 18:31:08 +01:00
};
meta = with stdenv.lib; {
2018-07-10 18:44:34 +01:00
description = "A tool that provides secure DNS resolution";
2018-07-10 18:31:08 +01:00
license = licenses.isc;
homepage = https://dnscrypt.info/;
maintainers = with maintainers; [ atemu waynr ];
2018-07-10 18:31:08 +01:00
platforms = with platforms; unix;
};
}