mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
652 B
Nix
24 lines
652 B
Nix
{ stdenv, fetchurl, cxxtools, zlib, openssl, zip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tntnet-${version}";
|
|
version = "2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.tntnet.org/download/${name}.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 ];
|
|
};
|
|
}
|