tntnet: 2.2.1 -> 3.0

This commit is contained in:
Weijia Wang 2023-12-11 00:27:05 +01:00
parent 659c541a06
commit 7b88d5d388

View File

@ -1,22 +1,49 @@
{ lib, stdenv, fetchurl, cxxtools, zlib, openssl, zip }:
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, cxxtools
, zlib
, openssl
, zip
}:
stdenv.mkDerivation rec {
pname = "tntnet";
version = "2.2.1";
version = "3.0";
src = fetchurl {
url = "http://www.tntnet.org/download/${pname}-${version}.tar.gz";
sha256 = "08bmak9mpbamwwl3h9p8x5qzwqlm9g3jh70y0ml5hk7hiv870cf8";
src = fetchFromGitHub {
owner = "maekitalo";
repo = "tntnet";
rev = "V${version}";
hash = "sha256-ujVPOreCGCFlYHa19yCIiZ0ed+p0jnS14DHDwKYvtc0=";
};
buildInputs = [ cxxtools zlib openssl zip ];
patches = [
(fetchpatch {
url = "https://github.com/maekitalo/tntnet/commit/69adfc8ee351a0e82990c1ffa7af6dab726e1e49.patch";
hash = "sha256-4UdUXKQiIa9CPlGg8XmfKQ8NTWb2A3AiuPthzEthlf8=";
})
];
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
cxxtools
zlib
openssl
zip
];
enableParallelBuilding = true;
meta = with lib; {
homepage = "http://www.tntnet.org/tntnet.html";
description = "Web server which allows users to develop web applications using C++";
platforms = platforms.linux ;
platforms = platforms.linux;
license = licenses.lgpl21;
maintainers = [ maintainers.juliendehos ];
};