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