summary refs log tree commit diff
path: root/pkgs/tools/networking/dnscrypt-proxy/default.nix
blob: bdd2c4a0c24ee0cef70021b18938b2b5dd65b5fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, libsodium }:

stdenv.mkDerivation rec {
  name = "dnscrypt-proxy-1.4.3";

  src = fetchurl {
    url = "http://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
    sha256 = "0cij80ryxnikpmm6s79c2fqg6bdiz1wdy50xrnd7w954vw9mhr0b";
  };

  buildInputs = [ libsodium ];

  meta = {
    description = "A tool for securing communications between a client and a DNS resolver";
    homepage = http://dnscrypt.org/;
    license = with stdenv.lib.licenses; [ isc ];
    maintainers = with stdenv.lib.maintainers; [ joachifm ];
    platforms = stdenv.lib.platforms.all;
  };
}