lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03-start 25 lines 786 B view raw
1{ stdenv, fetchurl, libsodium, pkgconfig, systemd }: 2 3stdenv.mkDerivation rec { 4 name = "dnscrypt-proxy-${version}"; 5 version = "1.6.0"; 6 7 src = fetchurl { 8 url = "http://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2"; 9 sha256 = "0zfw9vi9qbsc55awncyigqfqp25v5adqk6jpg1jdfkmbqqfykk70"; 10 }; 11 12 configureFlags = '' 13 ${stdenv.lib.optionalString stdenv.isLinux "--with-systemd"} 14 ''; 15 16 buildInputs = [ pkgconfig libsodium ] ++ stdenv.lib.optional stdenv.isLinux systemd; 17 18 meta = { 19 description = "A tool for securing communications between a client and a DNS resolver"; 20 homepage = http://dnscrypt.org/; 21 license = stdenv.lib.licenses.isc; 22 maintainers = with stdenv.lib.maintainers; [ joachifm jgeerds ]; 23 platforms = stdenv.lib.platforms.all; 24 }; 25}