1 { lib, stdenv, fetchurl, cxxtools, zlib, openssl, zip }:
3 stdenv.mkDerivation rec {
8 url = "http://www.tntnet.org/download/${pname}-${version}.tar.gz";
9 sha256 = "08bmak9mpbamwwl3h9p8x5qzwqlm9g3jh70y0ml5hk7hiv870cf8";
12 buildInputs = [ cxxtools zlib openssl zip ];
14 enableParallelBuilding = true;
17 homepage = "http://www.tntnet.org/tntnet.html";
18 description = "Web server which allows users to develop web applications using C++";
19 platforms = platforms.linux ;
20 license = licenses.lgpl21;
21 maintainers = [ maintainers.juliendehos ];