2013-02-09 22:50:50 +01:00
|
|
|
{ stdenv, fetchurl, boostHeaders }:
|
2011-08-16 16:01:38 +02:00
|
|
|
|
2013-02-09 22:50:50 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-03-28 13:56:22 +01:00
|
|
|
name = "mini-httpd-1.4";
|
2011-08-16 16:01:38 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-09 22:50:50 +01:00
|
|
|
url = "mirror://savannah/mini-httpd/${name}.tar.gz";
|
2013-03-28 13:56:22 +01:00
|
|
|
sha256 = "1i46klkx2ca1cgmlilajkx8gf7b7d7c2sj58llxfllh184pb6cpd";
|
2011-08-16 16:01:38 +02:00
|
|
|
};
|
|
|
|
|
2013-02-09 22:50:50 +01:00
|
|
|
buildInputs = [ boostHeaders ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2011-08-16 16:01:38 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://mini-httpd.nongnu.org/";
|
|
|
|
description = "a minimalistic high-performance web server";
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|