summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2017-01-20 01:36:05 +0100
committerrnhmjoj <micheleguerinirocco@me.com>2017-01-23 13:15:33 +0100
commita7b7d0fc3ea3eef375c7b398d0127c0611edf637 (patch)
tree46b27355280f8b523fbb46b3aa7b8b9271ff6e97 /pkgs/tools
parentfc8233a64f49207bcb7a1774eba4e1384dfce200 (diff)
downloadnixlib-a7b7d0fc3ea3eef375c7b398d0127c0611edf637.tar
nixlib-a7b7d0fc3ea3eef375c7b398d0127c0611edf637.tar.gz
nixlib-a7b7d0fc3ea3eef375c7b398d0127c0611edf637.tar.bz2
nixlib-a7b7d0fc3ea3eef375c7b398d0127c0611edf637.tar.lz
nixlib-a7b7d0fc3ea3eef375c7b398d0127c0611edf637.tar.xz
nixlib-a7b7d0fc3ea3eef375c7b398d0127c0611edf637.tar.zst
nixlib-a7b7d0fc3ea3eef375c7b398d0127c0611edf637.zip
dnscrypt-proxy: 1.9.1 -> 1.9.4
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/dnscrypt-proxy/default.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/tools/networking/dnscrypt-proxy/default.nix b/pkgs/tools/networking/dnscrypt-proxy/default.nix
index baa295c0b001..24aa3d4b829b 100644
--- a/pkgs/tools/networking/dnscrypt-proxy/default.nix
+++ b/pkgs/tools/networking/dnscrypt-proxy/default.nix
@@ -4,11 +4,11 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "dnscrypt-proxy-${version}";
-  version = "1.9.1";
+  version = "1.9.4";
 
   src = fetchurl {
     url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
-    sha256 = "0aa1qw59b72wl922lfhg24xq2gkv95v1s0daiiqv9b4zpap3ynag";
+    sha256 = "07piwsjczamwvdpv1585kg4awqakip51bwsm8nqi6bljww4agx7x";
   };
 
   configureFlags = optional stdenv.isLinux "--with-systemd";
@@ -21,14 +21,6 @@ stdenv.mkDerivation rec {
     # Previous versions required libtool files to load plugins; they are
     # now strictly optional.
     rm $out/lib/dnscrypt-proxy/*.la
-
-    # The installation ends up copying the same sample configuration
-    # into $out/etc twice, with the expectation that one of them will be
-    # edited by the user.  Since we can't modify the file, it makes more
-    # sense to move only a single copy to the doc directory.
-    mkdir -p $out/share/doc/dnscrypt-proxy
-    mv $out/etc/dnscrypt-proxy.conf.example $out/share/doc/dnscrypt-proxy/
-    rm -rf $out/etc
   '';
 
   meta = {