2021-01-14 23:07:56 -08:00
|
|
|
{ lib, stdenv, fetchurl, boost }:
|
2011-08-16 07:01:38 -07:00
|
|
|
|
2013-02-09 13:50:50 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-29 04:04:09 -07:00
|
|
|
name = "mini-httpd-1.7";
|
2011-08-16 07:01:38 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://download-mirror.savannah.gnu.org/releases/mini-httpd/${name}.tar.gz";
|
2017-08-29 04:04:09 -07:00
|
|
|
sha256 = "0jggmlaywjfbdljzv5hyiz49plnxh0har2bnc9dq4xmj1pmjgs49";
|
2011-08-16 07:01:38 -07:00
|
|
|
};
|
|
|
|
|
2014-09-14 15:53:05 -07:00
|
|
|
buildInputs = [ boost ];
|
2013-02-09 13:50:50 -08:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2011-08-16 07:01:38 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://mini-httpd.nongnu.org/";
|
2017-08-29 04:04:09 -07:00
|
|
|
description = "minimalistic high-performance web server";
|
2021-01-14 23:07:56 -08:00
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.peti ];
|
2011-08-16 07:01:38 -07:00
|
|
|
};
|
|
|
|
}
|