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

33 lines
880 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libsodium, pkgconfig, 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}";
2016-03-02 15:59:42 +03:00
version = "1.6.1";
2014-11-03 10:32:59 +03:00
src = fetchurl {
url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
2016-03-02 15:59:42 +03:00
sha256 = "16lif3qhyfjpgg54vjlwpslxk90akmbhlpnn1szxm628bmpw6nl9";
2014-11-03 10:32:59 +03:00
};
configureFlags = ''
${optionalString stdenv.isLinux "--with-systemd"}
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libsodium ] ++ optional stdenv.isLinux systemd;
2014-11-03 10:32:59 +03:00
2016-04-15 18:02:40 +03:00
outputs = [ "out" "man" ];
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
};
}