about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/http/webfs/default.nix
blob: 3fb3890f9c4e9c721efcb68214e73513652d4951 (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
27
28
29
30
31
32
33
34
{ stdenv, fetchurl, openssl }:
let
  # Let's not pull the whole apache httpd package
  mime_file = fetchurl {
    url = https://raw.githubusercontent.com/apache/httpd/906e419c1f703360e2e8ec077b393347f993884f/docs/conf/mime.types;
    sha256 = "ef972fc545cbff4c0daa2b2e6b440859693b3c10435ee90f10fa6fffad800c16";
  };
in
stdenv.mkDerivation rec {
  name = "webfs-${version}";
  version = "1.21";

  src = fetchurl {
    url = "https://www.kraxel.org/releases/webfs/${name}.tar.gz";
    sha256 = "98c1cb93473df08e166e848e549f86402e94a2f727366925b1c54ab31064a62a";
  };

  patches = [ ./ls.c.patch ];

  buildInputs = [ openssl ];

  makeFlags = [
    "mimefile=${mime_file}"
    "prefix=$(out)"
  ];

  meta = with stdenv.lib; {
    description = "HTTP server for purely static content";
    homepage    = http://linux.bytesex.org/misc/webfs.html;
    license     = licenses.gpl2;
    platforms   = platforms.all;
    maintainers = with maintainers; [ zimbatm ];
  };
}