My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/servers/http/mini-httpd/default.nix

21 lines
532 B

{ stdenv, fetchurl, boost }:
stdenv.mkDerivation {
name = "mini-httpd-1.1";
src = fetchurl {
url = "mirror://savannah/mini-httpd/mini-httpd-1.1.tar.gz";
sha256 = "12hqvh67hgxmc9b3fhb8gb5ash7j6f7d0mxv47zkmjl7k3vw3ny7";
};
buildInputs = [ boost ];
meta = {
homepage = "http://mini-httpd.nongnu.org/";
description = "a minimalistic high-performance web server";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.simons ];
};
}