2015-03-07 19:09:52 +01:00
|
|
|
{ stdenv, fetchurl, libsodium, pkgconfig, systemd }:
|
2014-11-03 08:32:59 +01:00
|
|
|
|
2016-03-07 18:26:13 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-11-03 08:32:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-06-12 14:19:23 +02:00
|
|
|
name = "dnscrypt-proxy-${version}";
|
2016-03-02 13:59:42 +01:00
|
|
|
version = "1.6.1";
|
2014-11-03 08:32:59 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-03-07 18:26:13 +01:00
|
|
|
url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
|
2016-03-02 13:59:42 +01:00
|
|
|
sha256 = "16lif3qhyfjpgg54vjlwpslxk90akmbhlpnn1szxm628bmpw6nl9";
|
2014-11-03 08:32:59 +01:00
|
|
|
};
|
|
|
|
|
2016-05-04 04:39:46 +02:00
|
|
|
configureFlags = optional stdenv.isLinux "--with-systemd";
|
2015-03-07 19:09:52 +01:00
|
|
|
|
2016-03-07 18:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ libsodium ] ++ optional stdenv.isLinux systemd;
|
2014-11-03 08:32:59 +01:00
|
|
|
|
2016-04-15 17:02:40 +02:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2014-11-03 08:32:59 +01:00
|
|
|
meta = {
|
2014-11-21 15:42:11 +01:00
|
|
|
description = "A tool for securing communications between a client and a DNS resolver";
|
2016-03-07 18:26:13 +01:00
|
|
|
homepage = https://dnscrypt.org/;
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ joachifm jgeerds ];
|
2016-03-24 17:03:48 +01:00
|
|
|
# upstream claims OSX support, but Hydra fails
|
|
|
|
platforms = with platforms; allBut [ darwin ];
|
2014-11-03 08:32:59 +01:00
|
|
|
};
|
|
|
|
}
|