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

23 lines
563 B
Nix
Raw Normal View History

{ stdenv, fetchurl, boost }:
2013-02-09 21:50:50 +00:00
stdenv.mkDerivation rec {
2015-10-02 20:13:07 +00:00
name = "mini-httpd-1.5";
src = fetchurl {
2013-02-09 21:50:50 +00:00
url = "mirror://savannah/mini-httpd/${name}.tar.gz";
2015-10-02 20:13:07 +00:00
sha256 = "1x4b6x40ymbaamqqq9p97lc0mnah4q7bza04fjs35c8agpm19zir";
};
buildInputs = [ boost ];
2013-02-09 21:50:50 +00:00
enableParallelBuilding = true;
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 ];
};
}