summary refs log tree commit diff
path: root/pkgs/servers/http/micro-httpd/default.nix
blob: 01ff91ebda6ba3694ae679f8975a1e4c571b0053 (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, fetchurl }:

stdenv.mkDerivation {
  pname = "micro-httpd";
  version = "20140814";

  src = fetchurl {
    url   = "https://acme.com/software/micro_httpd/micro_httpd_14Aug2014.tar.gz";
    sha256 = "0mlm24bi31s0s8w55i0sysv2nc1n2x4cfp6dm47slz49h2fz24rk";
  };

  preBuild = ''
    makeFlagsArray=(BINDIR="$out/bin" MANDIR="$out/share/man/man8")
    mkdir -p $out/bin
    mkdir -p $out/share/man/man8
  '';

  meta = with lib; {
    homepage    = "http://acme.com/software/micro_httpd/";
    description = "A really small HTTP server";
    license     = licenses.bsd2;
    platforms   = platforms.unix;
    maintainers = with maintainers; [ copumpkin ];
  };
}