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