119d93e223
- Use upstream description and explicitly set platforms = all - Coding conventions fix
21 lines
603 B
Nix
21 lines
603 B
Nix
{ 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";
|
|
homepage = http://dnscrypt.org/;
|
|
license = with stdenv.lib.licenses; [ isc ];
|
|
maintainers = with stdenv.lib.maintainers; [ joachifm ];
|
|
platform = stdenv.lib.platforms.all;
|
|
};
|
|
}
|