nixpkgs/pkgs/tools/networking/dnscrypt-proxy/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libsodium, ldns, openssl, systemd }:
2014-11-03 10:32:59 +03:00
with stdenv.lib;
2014-11-03 10:32:59 +03:00
stdenv.mkDerivation rec {
2015-06-12 15:19:23 +03:00
name = "dnscrypt-proxy-${version}";
version = "1.9.5";
2014-11-03 10:32:59 +03:00
src = fetchurl {
url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
sha256 = "1dhvklr4dg2vlw108n11xbamacaryyg3dbrg629b76lp7685p7z8";
2014-11-03 10:32:59 +03:00
};
enableParallelBuilding = true;
2016-05-04 05:39:46 +03:00
configureFlags = optional stdenv.isLinux "--with-systemd";
nativeBuildInputs = [ pkgconfig ];
# <ldns/ldns.h> depends on <openssl/ssl.h>
buildInputs = [ libsodium openssl.dev ldns ] ++ optional stdenv.isLinux systemd;
2014-11-03 10:32:59 +03:00
postInstall = ''
# Previous versions required libtool files to load plugins; they are
# now strictly optional.
rm $out/lib/dnscrypt-proxy/*.la
'';
2016-04-15 18:02:40 +03:00
2014-11-03 10:32:59 +03:00
meta = {
description = "A tool for securing communications between a client and a DNS resolver";
homepage = https://dnscrypt.org/;
license = licenses.isc;
maintainers = with maintainers; [ joachifm jgeerds ];
# upstream claims OSX support, but Hydra fails
platforms = with platforms; allBut darwin;
2014-11-03 10:32:59 +03:00
};
}