2017-03-16 13:57:07 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libsodium, ldns, openssl, systemd }:
|
2014-11-03 07:32:59 +00:00
|
|
|
|
2016-03-07 17:26:13 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-11-03 07:32:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-06-12 13:19:23 +01:00
|
|
|
name = "dnscrypt-proxy-${version}";
|
2017-05-21 17:00:01 +01:00
|
|
|
version = "1.9.5";
|
2014-11-03 07:32:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-01-08 23:32:05 +00:00
|
|
|
url = "https://launchpad.net/ubuntu/+archive/primary/+files/${name}.orig.tar.gz";
|
2017-05-21 17:00:01 +01:00
|
|
|
sha256 = "1dhvklr4dg2vlw108n11xbamacaryyg3dbrg629b76lp7685p7z8";
|
2014-11-03 07:32:59 +00:00
|
|
|
};
|
|
|
|
|
2017-08-06 18:10:06 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-05-04 03:39:46 +01:00
|
|
|
configureFlags = optional stdenv.isLinux "--with-systemd";
|
2015-03-07 18:09:52 +00:00
|
|
|
|
2016-03-07 17:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2017-03-16 13:57:07 +00:00
|
|
|
# <ldns/ldns.h> depends on <openssl/ssl.h>
|
|
|
|
buildInputs = [ libsodium openssl.dev ldns ] ++ optional stdenv.isLinux systemd;
|
2014-11-03 07:32:59 +00:00
|
|
|
|
2016-12-30 04:33:53 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Previous versions required libtool files to load plugins; they are
|
|
|
|
# now strictly optional.
|
|
|
|
rm $out/lib/dnscrypt-proxy/*.la
|
|
|
|
'';
|
2016-04-15 16:02:40 +01:00
|
|
|
|
2014-11-03 07:32:59 +00:00
|
|
|
meta = {
|
2014-11-21 14:42:11 +00:00
|
|
|
description = "A tool for securing communications between a client and a DNS resolver";
|
2018-09-03 15:53:02 +01:00
|
|
|
homepage = https://dnscrypt.info/;
|
2016-03-07 17:26:13 +00:00
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ joachifm jgeerds ];
|
2016-03-24 16:03:48 +00:00
|
|
|
# upstream claims OSX support, but Hydra fails
|
2018-03-13 22:00:52 +00:00
|
|
|
platforms = platforms.linux; # Maybe other non-darwin Unix
|
2014-11-03 07:32:59 +00:00
|
|
|
};
|
|
|
|
}
|