Merge pull request #258998 from pongo1231/libhttpserver
libhttpserver: init at 0.19.0
This commit is contained in:
commit
26b71defc4
46
pkgs/by-name/li/libhttpserver/package.nix
Normal file
46
pkgs/by-name/li/libhttpserver/package.nix
Normal 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
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user