nixpkgs/pkgs/servers/http/mini-httpd/default.nix
2017-08-29 13:04:52 +02:00

23 lines
589 B
Nix

{ stdenv, fetchurl, boost }:
stdenv.mkDerivation rec {
name = "mini-httpd-1.7";
src = fetchurl {
url = "http://download-mirror.savannah.gnu.org/releases/mini-httpd/${name}.tar.gz";
sha256 = "0jggmlaywjfbdljzv5hyiz49plnxh0har2bnc9dq4xmj1pmjgs49";
};
buildInputs = [ boost ];
enableParallelBuilding = true;
meta = {
homepage = http://mini-httpd.nongnu.org/;
description = "minimalistic high-performance web server";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.peti ];
};
}