dnscrypt-proxy2: init at 2.0.15
This commit is contained in:
parent
ff478794fd
commit
dae9cf6106
@ -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";
|
||||
|
24
pkgs/tools/networking/dnscrypt-proxy/2.x/default.nix
Normal file
24
pkgs/tools/networking/dnscrypt-proxy/2.x/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user