nixpkgs/pkgs/tools/networking/dnscrypt-proxy/default.nix
Eelco Dolstra 2ed5c2bd6b Set some meta.platforms
Also fix meta.platform -> meta.platforms in a few places.
2015-03-20 20:04:42 +01:00

21 lines
592 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 = with stdenv.lib.licenses; [ isc ];
maintainers = with stdenv.lib.maintainers; [ joachifm ];
platforms = stdenv.lib.platforms.all;
};
}