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

25 lines
616 B
Nix
Raw Normal View History

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