2022-01-12 05:04:10 +00:00
|
|
|
{ lib, stdenv, fetchfossil, openssl }:
|
2021-06-08 16:29:10 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "althttpd";
|
2023-10-13 00:37:58 +00:00
|
|
|
version = "unstable-2023-08-12";
|
2021-06-08 16:29:10 +00:00
|
|
|
|
|
|
|
src = fetchfossil {
|
|
|
|
url = "https://sqlite.org/althttpd/";
|
2023-10-13 00:37:58 +00:00
|
|
|
rev = "c0bdc68e6c56ef25";
|
2024-09-15 22:34:02 +00:00
|
|
|
hash = "sha256-VoDR5MlVlvar9wYA0kUhvDQVjxDwsZlqrNR3u4Tqw5c=";
|
2021-06-08 16:29:10 +00:00
|
|
|
};
|
|
|
|
|
2022-01-12 05:04:10 +00:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2022-08-13 11:58:55 +00:00
|
|
|
makeFlags = [ "CC:=$(CC)" ];
|
|
|
|
|
2021-06-08 16:29:10 +00:00
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 -t $out/bin althttpd
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Althttpd webserver";
|
|
|
|
homepage = "https://sqlite.org/althttpd/";
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
maintainers = with maintainers; [ siraben ];
|
|
|
|
platforms = platforms.all;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "althttpd";
|
2021-06-08 16:29:10 +00:00
|
|
|
};
|
|
|
|
}
|