blob: 92d43baaa160641f737517e720f3145c64987130 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildGoModule,
fetchFromGitHub,
nixosTests,
}:
buildGoModule rec {
pname = "dnscrypt-proxy";
version = "2.1.7";
vendorHash = null;
doCheck = false;
src = fetchFromGitHub {
owner = "DNSCrypt";
repo = "dnscrypt-proxy";
rev = version;
sha256 = "sha256-s0ooICual87+y/DMppuTQtNzZRRCg/42SQImDrPVRng=";
};
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;
};
}
|