about summary refs log tree commit diff
path: root/pkgs/servers/althttpd/default.nix
blob: 34b6f6fb5b7b7c645cc9c68ec67dcfd5af941673 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv, fetchfossil, openssl }:

stdenv.mkDerivation rec {
  pname = "althttpd";
  version = "unstable-2022-01-10";

  src = fetchfossil {
    url = "https://sqlite.org/althttpd/";
    rev = "83196564d05f33c3";
    sha256 = "sha256-z/XMVnDihcO56kJaXIJGUUdnz8mR5jlySrLZX1tkV5c=";
  };

  buildInputs = [ openssl ];

  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;
  };
}