summary refs log tree commit diff
path: root/pkgs/development/libraries/tntnet/default.nix
blob: 86b0080a824245d708c1c0089f70c5d4c746f1d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, cxxtools, zlib, openssl, zip }:

stdenv.mkDerivation rec {
  pname = "tntnet";
  version = "2.2.1";

  src = fetchurl {
    url = "http://www.tntnet.org/download/${pname}-${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 ];
  };
}