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