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

31 lines
855 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}";
version = "1.7.0";
2014-11-03 10:32:59 +03:00
src = fetchurl {
url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
sha256 = "1qw2nib0d5ia8581lbdnjxgn9c7pf2qw8vhpnnh1wjcjj3gpgbqx";
2014-11-03 10:32:59 +03:00
};
2016-05-04 05:39:46 +03:00
configureFlags = optional 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
};
}