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

25 lines
616 B
Nix
Raw Normal View History

2018-07-10 10:31:08 -07:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "dnscrypt-proxy2-${version}";
version = "2.0.15";
goPackagePath = "github.com/jedisct1/dnscrypt-proxy";
src = fetchFromGitHub {
owner = "jedisct1";
repo = "dnscrypt-proxy";
rev = "${version}";
sha256 = "0iwvndk1h550zmwhwablb0smv9n2l51hqbmzj354mcgi6frnx819";
};
meta = with stdenv.lib; {
2018-07-10 10:44:34 -07:00
description = "A tool that provides secure DNS resolution";
2018-07-10 10:31:08 -07:00
license = licenses.isc;
homepage = https://dnscrypt.info/;
maintainers = with maintainers; [ waynr ];
platforms = with platforms; unix;
};
}