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

31 lines
859 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libsodium, pkgconfig, systemd }:
2014-11-03 08:32:59 +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 {
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";
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 = {
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 08:32:59 +01:00
};
}