567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
autoconf,
|
|
automake,
|
|
libtool,
|
|
gnutls,
|
|
libmicrohttpd,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libhttpserver";
|
|
version = "0.19.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "etr";
|
|
repo = "libhttpserver";
|
|
rev = version;
|
|
hash = "sha256-Pc3Fvd8D4Ymp7dG9YgU58mDceOqNfhWE1JtnpVaNx/Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
libtool
|
|
];
|
|
|
|
buildInputs = [
|
|
gnutls
|
|
libmicrohttpd
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = ''
|
|
patchShebangs ./bootstrap
|
|
'';
|
|
|
|
preConfigure = ''
|
|
./bootstrap
|
|
'';
|
|
|
|
configureFlags = [ "--enable-same-directory-build" ];
|
|
|
|
meta = {
|
|
description = "C++ library for creating an embedded Rest HTTP server (and more)";
|
|
homepage = "https://github.com/etr/libhttpserver";
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = with lib.maintainers; [ pongo1231 ];
|
|
platforms = lib.platforms.unix;
|
|
broken = stdenv.hostPlatform.isDarwin; # configure: error: cannot find required auxiliary files: ltmain.sh
|
|
};
|
|
}
|