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

23 lines
576 B
Nix
Raw Normal View History

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