nixpkgs/pkgs/development/libraries/tntnet/default.nix

24 lines
656 B
Nix
Raw Normal View History

2016-08-17 10:32:35 +00:00
{ stdenv, fetchurl, cxxtools, zlib, openssl, zip }:
stdenv.mkDerivation rec {
pname = "tntnet";
2016-08-17 10:32:35 +00:00
version = "2.2.1";
2018-05-28 12:59:57 +00:00
2016-08-17 10:32:35 +00:00
src = fetchurl {
url = "http://www.tntnet.org/download/${pname}-${version}.tar.gz";
2016-08-17 10:32:35 +00:00
sha256 = "08bmak9mpbamwwl3h9p8x5qzwqlm9g3jh70y0ml5hk7hiv870cf8";
};
buildInputs = [ cxxtools zlib openssl zip ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "http://www.tntnet.org/tntnet.html";
2016-08-17 10:32:35 +00:00
description = "Web server which allows users to develop web applications using C++";
platforms = platforms.linux ;
license = licenses.lgpl21;
maintainers = [ maintainers.juliendehos ];
};
}