273ec1886a
err, changelog: https://gnunet.org/git/libmicrohttpd.git/commit/?h=v0.9.61&id=a78bc73beb1c34421659258801569128b256f797
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, fetchurl, libgcrypt, curl, gnutls, pkgconfig, libiconv, libintl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmicrohttpd-${version}";
|
|
version = "0.9.61";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
|
|
sha256 = "0dfl96l5wxqmswdqsdxqisflvm0padk9rikxyrhrx9rhm6s6ki6v";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "devdoc" "info" ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libgcrypt curl gnutls libiconv libintl ];
|
|
|
|
preCheck = ''
|
|
# Since `localhost' can't be resolved in a chroot, work around it.
|
|
sed -ie 's/localhost/127.0.0.1/g' src/test*/*.[ch]
|
|
'';
|
|
|
|
# Disabled because the tests can time-out.
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Embeddable HTTP server library";
|
|
|
|
longDescription = ''
|
|
GNU libmicrohttpd is a small C library that is supposed to make
|
|
it easy to run an HTTP server as part of another application.
|
|
'';
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
homepage = https://www.gnu.org/software/libmicrohttpd/;
|
|
|
|
maintainers = with maintainers; [ eelco vrthra fpletz ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|