forked from mirrors/nixpkgs
22 lines
616 B
Nix
22 lines
616 B
Nix
{ stdenv, fetchurl, libsodium }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dnscrypt-proxy-${version}";
|
|
version = "1.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
|
|
sha256 = "0zfw9vi9qbsc55awncyigqfqp25v5adqk6jpg1jdfkmbqqfykk70";
|
|
};
|
|
|
|
buildInputs = [ libsodium ];
|
|
|
|
meta = {
|
|
description = "A tool for securing communications between a client and a DNS resolver";
|
|
homepage = http://dnscrypt.org/;
|
|
license = stdenv.lib.licenses.isc;
|
|
maintainers = with stdenv.lib.maintainers; [ joachifm jgeerds ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|