dnscrypt-proxy2: init at 2.0.15

This commit is contained in:
wayne 2018-07-10 12:31:08 -05:00 committed by Joachim F
parent ff478794fd
commit dae9cf6106
4 changed files with 32 additions and 1 deletions

View file

@ -4204,6 +4204,11 @@
github = "vyp";
name = "vyp";
};
waynr = {
name = "Wayne Warren";
email = "wayne.warren.s@gmail.com";
github = "waynr";
};
wchresta = {
email = "wchresta.nix@chrummibei.ch";
github = "wchresta";

View file

@ -0,0 +1,24 @@
{ 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; {
description = "A tool that provides secure DNS resolution.";
license = licenses.isc;
homepage = https://dnscrypt.info/;
maintainers = with maintainers; [ waynr ];
platforms = with platforms; unix;
};
}

View file

@ -2012,7 +2012,9 @@ with pkgs;
djbdns = callPackage ../tools/networking/djbdns { };
dnscrypt-proxy = callPackage ../tools/networking/dnscrypt-proxy { };
dnscrypt-proxy = callPackage ../tools/networking/dnscrypt-proxy/1.x { };
dnscrypt-proxy2 = callPackage ../tools/networking/dnscrypt-proxy/2.x { };
dnscrypt-wrapper = callPackage ../tools/networking/dnscrypt-wrapper { };