1 { lib, stdenv, fetchfossil, openssl }:
3 stdenv.mkDerivation rec {
5 version = "unstable-2023-08-12";
8 url = "https://sqlite.org/althttpd/";
9 rev = "c0bdc68e6c56ef25";
10 sha256 = "sha256-VoDR5MlVlvar9wYA0kUhvDQVjxDwsZlqrNR3u4Tqw5c=";
13 buildInputs = [ openssl ];
15 makeFlags = [ "CC:=$(CC)" ];
18 install -Dm755 -t $out/bin althttpd
22 description = "Althttpd webserver";
23 homepage = "https://sqlite.org/althttpd/";
24 license = licenses.publicDomain;
25 maintainers = with maintainers; [ siraben ];
26 platforms = platforms.all;
27 mainProgram = "althttpd";