summary refs log tree commit diff
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2018-02-27 20:23:53 +0800
committerGitHub <noreply@github.com>2018-02-27 20:23:53 +0800
commite899be83f02e4482e6f6c11500d91f1c168f3d80 (patch)
tree17d2028aa98031a21ced41dfc73f79b70624a39c
parent9a6b5d43020a2dbb35101d9add4a772933700566 (diff)
parent741c261cf7116984ec97f5edee42e449a772beee (diff)
downloadnixlib-e899be83f02e4482e6f6c11500d91f1c168f3d80.tar
nixlib-e899be83f02e4482e6f6c11500d91f1c168f3d80.tar.gz
nixlib-e899be83f02e4482e6f6c11500d91f1c168f3d80.tar.bz2
nixlib-e899be83f02e4482e6f6c11500d91f1c168f3d80.tar.lz
nixlib-e899be83f02e4482e6f6c11500d91f1c168f3d80.tar.xz
nixlib-e899be83f02e4482e6f6c11500d91f1c168f3d80.tar.zst
nixlib-e899be83f02e4482e6f6c11500d91f1c168f3d80.zip
Merge pull request #35702 from ryantm/auto-update/hiawatha-10.5-to-10.7
hiawatha: 10.5 -> 10.7
-rw-r--r--pkgs/servers/http/hiawatha/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/hiawatha/default.nix b/pkgs/servers/http/hiawatha/default.nix
index 2267c07e6f98..99900bbdb3ea 100644
--- a/pkgs/servers/http/hiawatha/default.nix
+++ b/pkgs/servers/http/hiawatha/default.nix
@@ -12,11 +12,11 @@ assert enableSSL -> openssl !=null;
 
 stdenv.mkDerivation rec {
   name = "hiawatha-${version}";
-  version = "10.5";
+  version = "10.7";
 
   src = fetchurl {
     url = "https://github.com/hsleisink/hiawatha/archive/v${version}.tar.gz";
-    sha256 = "11nqdmmhq1glgsiza8pfh69wmpgwl51vb3xijmpcxv63a7ywp4fj";
+    sha256 = "1k0vgpfkmdxmkimq4ab70cqwhj5qwr4pzq7nnv957ah8cw2ijy1z";
   };
 
   buildInputs =  [ cmake libxslt zlib libxml2 ] ++ stdenv.lib.optional enableSSL openssl ;