nixpkgs/pkgs/servers/althttpd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
657 B
Nix
Raw Normal View History

{ lib, stdenv, fetchfossil, openssl }:
2021-06-08 16:29:10 +00:00
stdenv.mkDerivation rec {
pname = "althttpd";
version = "unstable-2022-08-12";
2021-06-08 16:29:10 +00:00
src = fetchfossil {
url = "https://sqlite.org/althttpd/";
rev = "823a1d985d4bacaa";
sha256 = "sha256-yfVsOfqtHw9ftnK5B4RWeRR/ygfsTEDm7fFSaVxsCas=";
2021-06-08 16:29:10 +00:00
};
buildInputs = [ openssl ];
makeFlags = [ "CC:=$(CC)" ];
2021-06-08 16:29:10 +00: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;
};
}