3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/http/mini-httpd/default.nix

23 lines
594 B
Nix
Raw Normal View History

{ stdenv, fetchurl, boost }:
2013-02-09 21:50:50 +00:00
stdenv.mkDerivation rec {
2016-04-04 14:06:32 +01:00
name = "mini-httpd-1.6";
src = fetchurl {
2016-04-04 14:06:32 +01:00
url = "http://download-mirror.savannah.gnu.org/releases/mini-httpd/${name}.tar.gz";
sha256 = "04azr1qa70l0fnpbx7nmyxz1lkykjjs2b6p4lhkpg86hs3lrmxly";
};
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 ];
};
}