2016-06-21 00:53:26 -07:00
|
|
|
{ stdenv, fetchurl, libgcrypt, curl, gnutls, pkgconfig }:
|
2008-05-11 04:46:48 -07:00
|
|
|
|
2008-08-29 14:54:26 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-21 16:39:07 -08:00
|
|
|
name = "libmicrohttpd-0.9.52";
|
2008-05-11 04:46:48 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-08-29 14:54:26 -07:00
|
|
|
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
|
2017-01-21 16:39:07 -08:00
|
|
|
sha256 = "1smgxw6jv81yybg86bzr4c2sn7a31apf8q4zz0kpch9xfrp7yyal";
|
2008-05-11 04:46:48 -07:00
|
|
|
};
|
|
|
|
|
2016-09-05 04:45:28 -07:00
|
|
|
outputs = [ "out" "dev" "devdoc" "info" ];
|
2016-06-21 00:53:26 -07:00
|
|
|
buildInputs = [ libgcrypt curl gnutls pkgconfig ];
|
2015-10-13 11:16:44 -07:00
|
|
|
|
2016-06-21 00:53:26 -07:00
|
|
|
preCheck = ''
|
2015-06-01 12:38:40 -07:00
|
|
|
# Since `localhost' can't be resolved in a chroot, work around it.
|
2016-06-21 00:53:26 -07:00
|
|
|
sed -ie 's/localhost/127.0.0.1/g' src/test*/*.[ch]
|
|
|
|
'';
|
2010-01-05 03:16:37 -08:00
|
|
|
|
2014-04-22 01:05:51 -07:00
|
|
|
# Disabled because the tests can time-out.
|
|
|
|
doCheck = false;
|
2008-08-29 14:54:26 -07:00
|
|
|
|
2016-06-21 00:53:26 -07:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Embeddable HTTP server library";
|
2015-06-01 12:38:40 -07:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2016-06-21 00:53:26 -07:00
|
|
|
license = licenses.lgpl2Plus;
|
2015-06-01 12:38:40 -07:00
|
|
|
|
2008-08-29 14:54:26 -07:00
|
|
|
homepage = http://www.gnu.org/software/libmicrohttpd/;
|
2015-06-01 12:38:40 -07:00
|
|
|
|
2017-01-21 16:39:07 -08:00
|
|
|
maintainers = with maintainers; [ eelco vrthra fpletz ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = platforms.linux;
|
2008-08-29 14:54:26 -07:00
|
|
|
};
|
2008-05-11 04:46:48 -07:00
|
|
|
}
|