summary refs log tree commit diff
path: root/pkgs/tools/networking/dnscrypt-proxy/1.x/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/dnscrypt-proxy/1.x/default.nix')
-rw-r--r--pkgs/tools/networking/dnscrypt-proxy/1.x/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/tools/networking/dnscrypt-proxy/1.x/default.nix b/pkgs/tools/networking/dnscrypt-proxy/1.x/default.nix
new file mode 100644
index 000000000000..6120b821bf41
--- /dev/null
+++ b/pkgs/tools/networking/dnscrypt-proxy/1.x/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, pkgconfig, libsodium, ldns, openssl, systemd }:
+
+with stdenv.lib;
+
+stdenv.mkDerivation rec {
+  name = "dnscrypt-proxy-${version}";
+  version = "1.9.5";
+
+  src = fetchurl {
+    url = "https://launchpad.net/ubuntu/+archive/primary/+files/${name}.orig.tar.gz";
+    sha256 = "1dhvklr4dg2vlw108n11xbamacaryyg3dbrg629b76lp7685p7z8";
+  };
+
+  enableParallelBuilding = true;
+
+  configureFlags = optional stdenv.isLinux "--with-systemd";
+
+  nativeBuildInputs = [ pkgconfig ];
+
+  # <ldns/ldns.h> depends on <openssl/ssl.h>
+  buildInputs = [ libsodium openssl.dev ldns ] ++ optional stdenv.isLinux systemd;
+
+  postInstall = ''
+    # Previous versions required libtool files to load plugins; they are
+    # now strictly optional.
+    rm $out/lib/dnscrypt-proxy/*.la
+  '';
+
+  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 = platforms.linux; # Maybe other non-darwin Unix
+  };
+}