depot/pkgs/by-name/dn/dnscrypt-proxy/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
688 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
buildGoModule rec {
pname = "dnscrypt-proxy";
version = "2.1.5";
vendorHash = null;
doCheck = false;
src = fetchFromGitHub {
owner = "DNSCrypt";
repo = "dnscrypt-proxy";
rev = version;
sha256 = "sha256-A9Cu4wcJxrptd9CpgXw4eyMX2nmNAogYBRDeeAjpEZY=";
};
passthru.tests = { inherit (nixosTests) dnscrypt-proxy2; };
meta = with lib; {
description = "Tool that provides secure DNS resolution";
license = licenses.isc;
homepage = "https://dnscrypt.info/";
maintainers = with maintainers; [ atemu waynr ];
mainProgram = "dnscrypt-proxy";
platforms = with platforms; unix;
};
}