3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/dnscrypt-proxy/default.nix

21 lines
603 B
Nix
Raw Normal View History

2014-11-03 07:32:59 +00:00
{ 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 tool for securing communications between a client and a DNS resolver";
2014-11-03 07:32:59 +00:00
homepage = http://dnscrypt.org/;
license = with stdenv.lib.licenses; [ isc ];
maintainers = with stdenv.lib.maintainers; [ joachifm ];
platform = stdenv.lib.platforms.all;
2014-11-03 07:32:59 +00:00
};
}