1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libsodium, libevent }:
3 stdenv.mkDerivation rec {
4 pname = "dnscrypt-wrapper";
7 src = fetchFromGitHub {
9 repo = "dnscrypt-wrapper";
11 sha256 = "055vxpcfg80b1456p6p0p236pwykknph9x3c9psg8ya3i8qqywkl";
14 enableParallelBuilding = true;
16 nativeBuildInputs = [ pkg-config autoreconfHook ];
17 buildInputs = [ libsodium libevent ];
20 description = "A tool for adding dnscrypt support to any name resolver";
21 homepage = "https://dnscrypt.info/";
22 license = licenses.isc;
23 maintainers = with maintainers; [ joachifm ];
24 platforms = platforms.linux;