at 18.03-beta 22 lines 650 B view raw
1{ stdenv, fetchurl, cxxtools, zlib, openssl, zip }: 2 3stdenv.mkDerivation rec { 4 version = "2.2.1"; 5 name = "tntnet"; 6 src = fetchurl { 7 url = "http://www.tntnet.org/download/tntnet-${version}.tar.gz"; 8 sha256 = "08bmak9mpbamwwl3h9p8x5qzwqlm9g3jh70y0ml5hk7hiv870cf8"; 9 }; 10 11 buildInputs = [ cxxtools zlib openssl zip ]; 12 13 enableParallelBuilding = true; 14 15 meta = with stdenv.lib; { 16 homepage = http://www.tntnet.org/tntnet.html; 17 description = "Web server which allows users to develop web applications using C++"; 18 platforms = platforms.linux ; 19 license = licenses.lgpl21; 20 maintainers = [ maintainers.juliendehos ]; 21 }; 22}