nixpkgs/pkgs/servers/http/mini-httpd/default.nix

23 lines
576 B
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{ lib, stdenv, fetchurl, boost }:
2013-02-09 21:50:50 +00:00
stdenv.mkDerivation rec {
2017-08-29 11:04:09 +00:00
name = "mini-httpd-1.7";
src = fetchurl {
url = "https://download-mirror.savannah.gnu.org/releases/mini-httpd/${name}.tar.gz";
2017-08-29 11:04:09 +00:00
sha256 = "0jggmlaywjfbdljzv5hyiz49plnxh0har2bnc9dq4xmj1pmjgs49";
};
buildInputs = [ boost ];
2013-02-09 21:50:50 +00:00
enableParallelBuilding = true;
meta = {
homepage = "http://mini-httpd.nongnu.org/";
2017-08-29 11:04:09 +00: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 ];
};
}