2018-07-10 17:31:08 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-06-07 01:23:35 +00:00
|
|
|
pname = "dnscrypt-proxy2";
|
2020-02-02 11:35:37 +00:00
|
|
|
version = "2.0.39";
|
2018-07-10 17:31:08 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/jedisct1/dnscrypt-proxy";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jedisct1";
|
|
|
|
repo = "dnscrypt-proxy";
|
2019-04-05 00:49:31 +00:00
|
|
|
rev = version;
|
2020-02-02 11:35:37 +00:00
|
|
|
sha256 = "0fvnp2brmqkwn04v01k53f9djk9ywa1cg26m2frhv4lj0581430y";
|
2018-07-10 17:31:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-07-10 17:44:34 +00:00
|
|
|
description = "A tool that provides secure DNS resolution";
|
2018-07-10 17:31:08 +00:00
|
|
|
|
|
|
|
license = licenses.isc;
|
|
|
|
homepage = https://dnscrypt.info/;
|
2020-02-07 13:35:53 +00:00
|
|
|
maintainers = with maintainers; [ atemu waynr ];
|
2018-07-10 17:31:08 +00:00
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|