Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / althttpd / default.nix
blob70c2fbcaa3235efbd67f4d242549bc52cfdeccf6
1 { lib, stdenv, fetchfossil, openssl }:
3 stdenv.mkDerivation rec {
4   pname = "althttpd";
5   version = "unstable-2023-08-12";
7   src = fetchfossil {
8     url = "https://sqlite.org/althttpd/";
9     rev = "c0bdc68e6c56ef25";
10     sha256 = "sha256-VoDR5MlVlvar9wYA0kUhvDQVjxDwsZlqrNR3u4Tqw5c=";
11   };
13   buildInputs = [ openssl ];
15   makeFlags = [ "CC:=$(CC)" ];
17   installPhase = ''
18     install -Dm755 -t $out/bin althttpd
19   '';
21   meta = with lib; {
22     description = "Althttpd webserver";
23     homepage = "https://sqlite.org/althttpd/";
24     license = licenses.publicDomain;
25     maintainers = with maintainers; [ siraben ];
26     platforms = platforms.all;
27     mainProgram = "althttpd";
28   };