1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 20:12:52 +00:00
nixpkgs/pkgs/tools/networking/dnscrypt-proxy2/default.nix

27 lines
594 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.44";
2018-07-10 18:31:08 +01:00
vendorSha256 = null;
2018-07-10 18:31:08 +01:00
doCheck = false;
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 = "08bg60j5z349blj5sip1f8f793q12ix3zmqkayym5nf69s1pfm7l";
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;
};
}