Merge pull request #126233 from siraben/althttpd-init
althttpd: init at unstable-2021-05-07
This commit is contained in:
commit
2533bf8cd4
2 changed files with 26 additions and 0 deletions
24
pkgs/servers/althttpd/default.nix
Normal file
24
pkgs/servers/althttpd/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -176,6 +176,8 @@ in
|
|||
|
||||
alda = callPackage ../development/interpreters/alda { };
|
||||
|
||||
althttpd = callPackage ../servers/althttpd { };
|
||||
|
||||
among-sus = callPackage ../games/among-sus { };
|
||||
|
||||
ankisyncd = callPackage ../servers/ankisyncd { };
|
||||
|
|
Loading…
Reference in a new issue