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

35 lines
989 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libsodium, systemd }:
2014-11-03 07:32:59 +00:00
with stdenv.lib;
2014-11-03 07:32:59 +00:00
stdenv.mkDerivation rec {
2015-06-12 12:19:23 +00:00
name = "dnscrypt-proxy-${version}";
2017-01-20 00:36:05 +00:00
version = "1.9.4";
2014-11-03 07:32:59 +00:00
src = fetchurl {
url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
2017-01-20 00:36:05 +00:00
sha256 = "07piwsjczamwvdpv1585kg4awqakip51bwsm8nqi6bljww4agx7x";
2014-11-03 07:32:59 +00:00
};
2016-05-04 02:39:46 +00:00
configureFlags = optional stdenv.isLinux "--with-systemd";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libsodium ] ++ optional stdenv.isLinux systemd;
2014-11-03 07:32:59 +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 15:02:40 +00:00
2014-11-03 07:32:59 +00: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 07:32:59 +00:00
};
}