3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/althttpd/default.nix

27 lines
625 B
Nix
Raw Normal View History

{ lib, stdenv, fetchfossil, openssl }:
2021-06-08 17:29:10 +01:00
stdenv.mkDerivation rec {
pname = "althttpd";
version = "unstable-2022-01-10";
2021-06-08 17:29:10 +01:00
src = fetchfossil {
url = "https://sqlite.org/althttpd/";
rev = "83196564d05f33c3";
sha256 = "sha256-z/XMVnDihcO56kJaXIJGUUdnz8mR5jlySrLZX1tkV5c=";
2021-06-08 17:29:10 +01:00
};
buildInputs = [ openssl ];
2021-06-08 17:29:10 +01:00
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;
};
}