158e1cfdd0
And don't use square brackets on such lines.
21 lines
582 B
Nix
21 lines
582 B
Nix
{ 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 = stdenv.lib.licenses.isc;
|
|
maintainers = with stdenv.lib.maintainers; [ joachifm ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|