nixpkgs/pkgs/servers/http/micro-httpd/default.nix

27 lines
676 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-05-28 03:15:42 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "micro-httpd";
version = "20140814";
2015-05-28 03:15:42 +00:00
src = fetchurl {
url = "https://acme.com/software/micro_httpd/micro_httpd_14Aug2014.tar.gz";
2015-05-28 03:15:42 +00:00
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; {
2015-05-28 03:15:42 +00:00
homepage = "http://acme.com/software/micro_httpd/";
description = "A really small HTTP server";
2015-05-28 03:15:42 +00:00
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ copumpkin ];
};
}