From 216ed76821fdb92443498920da6e8d88af451f9d Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 3 Nov 2014 08:32:59 +0100 Subject: dnscrypt-proxy: new expression --- pkgs/tools/networking/dnscrypt-proxy/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkgs/tools/networking/dnscrypt-proxy/default.nix (limited to 'pkgs/tools') diff --git a/pkgs/tools/networking/dnscrypt-proxy/default.nix b/pkgs/tools/networking/dnscrypt-proxy/default.nix new file mode 100644 index 000000000000..d0205be35b92 --- /dev/null +++ b/pkgs/tools/networking/dnscrypt-proxy/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, libsodium }: + +stdenv.mkDerivation rec { + name = "dnscrypt-proxy-1.4.1"; + + src = fetchurl { + url = "http://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2"; + sha256 = "00cf5c520c8a5a71ad4916b33aa0c8f9f55434039304f4ba10d7fffc620563f8"; + }; + + buildInputs = [ libsodium ]; + + meta = { + description = "A DNS proxy which encrypts and authenticates requests using the DNSCrypt protocol."; + homepage = http://dnscrypt.org/; + license = with stdenv.lib.licenses; [ isc ]; + maintainers = with stdenv.lib.maintainers; [ joachifm ]; + }; +} -- cgit 1.4.1