2014-09-14 22:53:05 +00:00
|
|
|
{ stdenv, fetchurl, boost }:
|
2011-08-16 14:01:38 +00:00
|
|
|
|
2013-02-09 21:50:50 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-04 13:06:32 +00:00
|
|
|
name = "mini-httpd-1.6";
|
2011-08-16 14:01:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-04 13:06:32 +00:00
|
|
|
url = "http://download-mirror.savannah.gnu.org/releases/mini-httpd/${name}.tar.gz";
|
|
|
|
sha256 = "04azr1qa70l0fnpbx7nmyxz1lkykjjs2b6p4lhkpg86hs3lrmxly";
|
2011-08-16 14:01:38 +00:00
|
|
|
};
|
|
|
|
|
2014-09-14 22:53:05 +00:00
|
|
|
buildInputs = [ boost ];
|
2013-02-09 21:50:50 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2011-08-16 14:01:38 +00:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://mini-httpd.nongnu.org/;
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "A minimalistic high-performance web server";
|
2011-08-16 14:01:38 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2016-09-01 17:39:33 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2011-08-16 14:01:38 +00:00
|
|
|
};
|
|
|
|
}
|