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