python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / tntnet / default.nix
bloba80b923e23587fc0d14052adb77dead8544ed8ac
1 { lib, stdenv, fetchurl, cxxtools, zlib, openssl, zip }:
3 stdenv.mkDerivation rec {
4   pname = "tntnet";
5   version = "2.2.1";
7   src = fetchurl {
8     url = "http://www.tntnet.org/download/${pname}-${version}.tar.gz";
9     sha256 = "08bmak9mpbamwwl3h9p8x5qzwqlm9g3jh70y0ml5hk7hiv870cf8";
10   };
12   buildInputs = [ cxxtools zlib openssl zip ];
14   enableParallelBuilding = true;
16   meta = with lib; {
17     homepage = "http://www.tntnet.org/tntnet.html";
18     description = "Web server which allows users to develop web applications using C++";
19     platforms = platforms.linux ;
20     license = licenses.lgpl21;
21     maintainers = [ maintainers.juliendehos ];
22   };