nixpkgs/pkgs/tools/networking/dnscrypt-proxy2/default.nix

25 lines
574 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2018-07-10 18:31:08 +01:00
buildGoModule rec {
pname = "dnscrypt-proxy2";
version = "2.0.43";
2018-07-10 18:31:08 +01:00
vendorSha256 = null;
2018-07-10 18:31:08 +01:00
src = fetchFromGitHub {
owner = "DNSCrypt";
2018-07-10 18:31:08 +01:00
repo = "dnscrypt-proxy";
rev = version;
sha256 = "1c12y8h7dww72a3agb74vr5fzxzy6k8394rdbgz9knk82fdwah1c";
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; [ atemu waynr ];
2018-07-10 18:31:08 +01:00
platforms = with platforms; unix;
};
}