althttpd: init at unstable-2021-05-07

This commit is contained in:
Ben Siraphob 2021-06-08 23:29:10 +07:00
parent 12e7af1cfb
commit 8327060fd7
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, stdenv, fetchfossil }:
stdenv.mkDerivation rec {
pname = "althttpd";
version = "unstable-2021-05-07";
src = fetchfossil {
url = "https://sqlite.org/althttpd/";
rev = "2c5e3f9f7051a578";
sha256 = "sha256-+RuogtQAc+zjCWTOiOunu1pXf3LxfdWYQX+24ysJ7uY=";
};
installPhase = ''
install -Dm755 -t $out/bin althttpd
'';
meta = with lib; {
description = "The Althttpd webserver";
homepage = "https://sqlite.org/althttpd/";
license = licenses.publicDomain;
maintainers = with maintainers; [ siraben ];
platforms = platforms.all;
};
}

View file

@ -176,6 +176,8 @@ in
alda = callPackage ../development/interpreters/alda { };
althttpd = callPackage ../servers/althttpd { };
among-sus = callPackage ../games/among-sus { };
ankisyncd = callPackage ../servers/ankisyncd { };