3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/dnscrypt-proxy/default.nix
Joachim Fasting b3592d0b20 dnscrypt-proxy: refactorings
- move build deps to nativeBuildInputs
- use https urls
2016-03-12 18:53:28 +01:00

30 lines
779 B
Nix

{ stdenv, fetchurl, libsodium, pkgconfig, systemd }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "dnscrypt-proxy-${version}";
version = "1.6.1";
src = fetchurl {
url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
sha256 = "16lif3qhyfjpgg54vjlwpslxk90akmbhlpnn1szxm628bmpw6nl9";
};
configureFlags = ''
${optionalString stdenv.isLinux "--with-systemd"}
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libsodium ] ++ optional stdenv.isLinux systemd;
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 ];
platforms = platforms.all;
};
}