lol
1{ lib, stdenv, fetchurl, cxxtools, zlib, openssl, zip }:
2
3stdenv.mkDerivation rec {
4 pname = "tntnet";
5 version = "2.2.1";
6
7 src = fetchurl {
8 url = "http://www.tntnet.org/download/${pname}-${version}.tar.gz";
9 sha256 = "08bmak9mpbamwwl3h9p8x5qzwqlm9g3jh70y0ml5hk7hiv870cf8";
10 };
11
12 buildInputs = [ cxxtools zlib openssl zip ];
13
14 enableParallelBuilding = true;
15
16 meta = with lib; {
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 ];
22 };
23}