38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ stdenv, fetchurl, libgcrypt, curl, gnutls, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmicrohttpd-0.9.53";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
|
|
sha256 = "1i1c7hwjmc4n31cgmfycgi8xsnm3kyc4zzdd4dir6i0z70nyq5cv";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "devdoc" "info" ];
|
|
buildInputs = [ libgcrypt curl gnutls pkgconfig ];
|
|
|
|
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 = http://www.gnu.org/software/libmicrohttpd/;
|
|
|
|
maintainers = with maintainers; [ eelco vrthra fpletz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|