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

40 lines
1.1 KiB
Nix
Raw Normal View History

2018-03-14 20:15:06 +01:00
{ stdenv, fetchurl, libgcrypt, curl, gnutls, pkgconfig, libiconv, libintl }:
stdenv.mkDerivation rec {
pname = "libmicrohttpd";
2019-12-23 22:46:40 +01:00
version = "0.9.69";
src = fetchurl {
url = "mirror://gnu/libmicrohttpd/${pname}-${version}.tar.gz";
2019-12-23 22:46:40 +01:00
sha256 = "0zp34zgcahym5kp2r83gfb5wnr8yf643a26k6zk96x3qica6p6zv";
};
outputs = [ "out" "dev" "devdoc" "info" ];
nativeBuildInputs = [ pkgconfig ];
2018-03-14 20:15:06 +01:00
buildInputs = [ libgcrypt curl gnutls libiconv libintl ];
2016-06-21 09:53:26 +02:00
preCheck = ''
# Since `localhost' can't be resolved in a chroot, work around it.
2016-06-21 09:53:26 +02: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 09:53:26 +02: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 09:53:26 +02:00
license = licenses.lgpl2Plus;
homepage = https://www.gnu.org/software/libmicrohttpd/;
2017-01-22 01:39:07 +01:00
maintainers = with maintainers; [ eelco vrthra fpletz ];
2017-09-27 15:37:22 +02:00
platforms = platforms.unix;
};
}