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}";
2019-03-20 03:13:59 -07:00
version = "2.0.21";
2018-07-10 10:31:08 -07:00
goPackagePath = "github.com/jedisct1/dnscrypt-proxy";
src = fetchFromGitHub {
owner = "jedisct1";
repo = "dnscrypt-proxy";
rev = "${version}";
2019-03-20 03:13:59 -07:00
sha256 = "00sz5gn4l56rp4xcvxfpq6c64inpgzbwpqy1yc5sima6ijrayi9g";
2018-07-10 10:31:08 -07:00
};
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;
};
}