nixpkgs/pkgs/development/libraries/libmicrohttpd/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2017-09-27 13:37:22 +00:00
{ stdenv, fetchurl, libgcrypt, curl, gnutls, pkgconfig, libiconv, libintlOrEmpty }:
stdenv.mkDerivation rec {
name = "libmicrohttpd-${version}";
version = "0.9.58";
src = fetchurl {
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
sha256 = "1wq17qvizis7bsyvyw1gnfycvivssncngziddnyrbzv2dhvy24bs";
};
outputs = [ "out" "dev" "devdoc" "info" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libgcrypt curl gnutls ]
2017-09-27 13:37:22 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv libintlOrEmpty ];
2016-06-21 07:53:26 +00:00
preCheck = ''
# Since `localhost' can't be resolved in a chroot, work around it.
2016-06-21 07:53:26 +00:00
sed -ie 's/localhost/127.0.0.1/g' src/test*/*.[ch]
'';
# Disabled because the tests can time-out.
doCheck = false;
2016-06-21 07:53:26 +00:00
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.
'';
2016-06-21 07:53:26 +00:00
license = licenses.lgpl2Plus;
homepage = http://www.gnu.org/software/libmicrohttpd/;
2017-01-22 00:39:07 +00:00
maintainers = with maintainers; [ eelco vrthra fpletz ];
2017-09-27 13:37:22 +00:00
platforms = platforms.unix;
};
}
2017-09-27 13:37:22 +00:00