2020-06-18 07:06:33 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "dnscrypt-proxy2";
|
2020-06-18 07:06:33 +00:00
|
|
|
version = "2.0.44";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
vendorSha256 = null;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-06-18 07:06:33 +00:00
|
|
|
owner = "DNSCrypt";
|
2020-04-24 23:36:52 +00:00
|
|
|
repo = "dnscrypt-proxy";
|
|
|
|
rev = version;
|
2020-06-18 07:06:33 +00:00
|
|
|
sha256 = "08bg60j5z349blj5sip1f8f793q12ix3zmqkayym5nf69s1pfm7l";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool that provides secure DNS resolution";
|
|
|
|
|
|
|
|
license = licenses.isc;
|
|
|
|
homepage = "https://dnscrypt.info/";
|
|
|
|
maintainers = with maintainers; [ atemu waynr ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|