at 18.03-beta 26 lines 741 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libsodium, libevent }: 2 3stdenv.mkDerivation rec { 4 name = "dnscrypt-wrapper-${version}"; 5 version = "0.4.0"; 6 7 src = fetchFromGitHub { 8 owner = "Cofyc"; 9 repo = "dnscrypt-wrapper"; 10 rev = "v${version}"; 11 sha256 = "121y93sb06qc50fj7vv47r6dpzv77hh7ywl7sgrfp8i4jf4kaspa"; 12 }; 13 14 enableParallelBuilding = true; 15 16 nativeBuildInputs = [ pkgconfig autoreconfHook ]; 17 buildInputs = [ libsodium libevent ]; 18 19 meta = with stdenv.lib; { 20 description = "A tool for adding dnscrypt support to any name resolver"; 21 homepage = https://dnscrypt.org/; 22 license = licenses.isc; 23 maintainers = with maintainers; [ tstrobel joachifm ]; 24 platforms = platforms.linux; 25 }; 26}