Merge pull request #17813 from juliendehos/tntnet

tntnet: init at 2.2.1
This commit is contained in:
Frederik Rietdijk 2016-08-18 10:59:57 +02:00 committed by GitHub
commit 3322f10a09
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl, cxxtools, zlib, openssl, zip }:
stdenv.mkDerivation rec {
version = "2.2.1";
name = "tntnet";
src = fetchurl {
url = "http://www.tntnet.org/download/tntnet-${version}.tar.gz";
sha256 = "08bmak9mpbamwwl3h9p8x5qzwqlm9g3jh70y0ml5hk7hiv870cf8";
};
buildInputs = [ cxxtools zlib openssl zip ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "http://www.tntnet.org/tntnet.html";
description = "Web server which allows users to develop web applications using C++";
platforms = platforms.linux ;
license = licenses.lgpl21;
maintainers = [ maintainers.juliendehos ];
};
}

View File

@ -9552,6 +9552,8 @@ in
tnt = callPackage ../development/libraries/tnt { };
tntnet = callPackage ../development/libraries/tntnet { };
kyotocabinet = callPackage ../development/libraries/kyotocabinet { };
tokyocabinet = callPackage ../development/libraries/tokyo-cabinet { };