Merge pull request #258998 from pongo1231/libhttpserver

libhttpserver: init at 0.19.0
This commit is contained in:
Sandro 2024-03-25 23:22:45 +01:00 committed by GitHub
commit 26b71defc4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
{ stdenv
, lib
, fetchFromGitHub
, autoconf
, automake
, libtool
, gnutls
, libmicrohttpd
}:
stdenv.mkDerivation rec {
pname = "libhttpserver";
version = "0.19.0";
src = fetchFromGitHub {
owner = "etr";
repo = pname;
rev = version;
sha256 = "sha256-Pc3Fvd8D4Ymp7dG9YgU58mDceOqNfhWE1JtnpVaNx/Y=";
};
nativeBuildInputs = [ autoconf automake libtool ];
buildInputs = [ gnutls libmicrohttpd ];
enableParallelBuilding = true;
postPatch = ''
patchShebangs ./bootstrap
'';
preConfigure = ''
./bootstrap
'';
configureFlags = [ "--enable-same-directory-build" ];
meta = with lib; {
description = "C++ library for creating an embedded Rest HTTP server (and more)";
homepage = "https://github.com/etr/libhttpserver";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ pongo1231 ];
platforms = platforms.unix;
broken = stdenv.isDarwin; # configure: error: cannot find required auxiliary files: ltmain.sh
};
}