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