about summary refs log tree commit diff
path: root/pkgs/servers/althttpd
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-01-12 12:04:10 +0700
committerBen Siraphob <bensiraphob@gmail.com>2022-01-12 12:06:58 +0700
commit12920518e601192a056e298a0c5b48d45e82e426 (patch)
treeb41fb0915b2923be6104e976b7a12849bcc6df44 /pkgs/servers/althttpd
parent5d792df1381c171a009459a23c512ff38be681cb (diff)
althttpd: unstable-2021-06-09 -> unstable-2022-01-10
Diffstat (limited to 'pkgs/servers/althttpd')
-rw-r--r--pkgs/servers/althttpd/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/servers/althttpd/default.nix b/pkgs/servers/althttpd/default.nix
index 4f1a128dd3885..34b6f6fb5b7b7 100644
--- a/pkgs/servers/althttpd/default.nix
+++ b/pkgs/servers/althttpd/default.nix
@@ -1,15 +1,17 @@
-{ lib, stdenv, fetchfossil }:
+{ lib, stdenv, fetchfossil, openssl }:
 
 stdenv.mkDerivation rec {
   pname = "althttpd";
-  version = "unstable-2021-06-09";
+  version = "unstable-2022-01-10";
 
   src = fetchfossil {
     url = "https://sqlite.org/althttpd/";
-    rev = "0d3b5e232c57e188";
-    sha256 = "sha256-vZwpjYYMdP/FgPTAQ9Kdh2RRMovpONqu2v73cCoYyxE=";
+    rev = "83196564d05f33c3";
+    sha256 = "sha256-z/XMVnDihcO56kJaXIJGUUdnz8mR5jlySrLZX1tkV5c=";
   };
 
+  buildInputs = [ openssl ];
+
   installPhase = ''
     install -Dm755 -t $out/bin althttpd
   '';