1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 10:00:56 +00:00
nixpkgs/pkgs/development/libraries/libmicrohttpd/default.nix

38 lines
1 KiB
Nix
Raw Normal View History

2016-06-21 08:53:26 +01:00
{ stdenv, fetchurl, libgcrypt, curl, gnutls, pkgconfig }:
stdenv.mkDerivation rec {
2017-04-30 19:22:10 +01:00
name = "libmicrohttpd-0.9.53";
src = fetchurl {
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
2017-04-30 19:22:10 +01:00
sha256 = "1i1c7hwjmc4n31cgmfycgi8xsnm3kyc4zzdd4dir6i0z70nyq5cv";
};
outputs = [ "out" "dev" "devdoc" "info" ];
2016-06-21 08:53:26 +01:00
buildInputs = [ libgcrypt curl gnutls pkgconfig ];
2016-06-21 08:53:26 +01:00
preCheck = ''
# 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]
'';
# Disabled because the tests can time-out.
doCheck = false;
2016-06-21 08:53:26 +01: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 08:53:26 +01: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 ];
platforms = platforms.linux;
};
}