dnscrypt-proxy: remove
This commit is contained in:
24
pkgs/tools/networking/dnscrypt-proxy2/default.nix
Normal file
24
pkgs/tools/networking/dnscrypt-proxy2/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "dnscrypt-proxy2";
|
||||
version = "2.0.36";
|
||||
|
||||
goPackagePath = "github.com/jedisct1/dnscrypt-proxy";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jedisct1";
|
||||
repo = "dnscrypt-proxy";
|
||||
rev = version;
|
||||
sha256 = "05pk0fl4cyh69lfssvx9prd2gg0akw1l14b4q76zfhh9vc47z6x1";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user