libmicrohttpd: Fix build and drop curl dependency
Curl was only used for the test suite, which was disabled anyway.
This commit is contained in:
parent
020cb43f55
commit
f1f7bd9a93
@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, curl, libgcrypt}:
|
||||
{ lib, stdenv, fetchurl, libgcrypt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libmicrohttpd-0.9.38";
|
||||
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "08g7p4l0p2fsjj8ayl68zq1bqgrn0pck19bm8yd7k61whvfv9wld";
|
||||
};
|
||||
|
||||
buildInputs = [ curl libgcrypt ];
|
||||
buildInputs = [ libgcrypt ];
|
||||
|
||||
preCheck =
|
||||
# Since `localhost' can't be resolved in a chroot, work around it.
|
||||
@ -29,10 +29,10 @@ stdenv.mkDerivation rec {
|
||||
it easy to run an HTTP server as part of another application.
|
||||
'';
|
||||
|
||||
license = stdenv.lib.licenses.lgpl2Plus;
|
||||
license = lib.licenses.lgpl2Plus;
|
||||
|
||||
homepage = http://www.gnu.org/software/libmicrohttpd/;
|
||||
|
||||
maintainers = [ ];
|
||||
maintainers = [ lib.maintainers.eelco ];
|
||||
};
|
||||
}
|
||||
|
@ -6959,10 +6959,7 @@ let
|
||||
|
||||
libmemcached = callPackage ../development/libraries/libmemcached { };
|
||||
|
||||
libmicrohttpd = callPackage ../development/libraries/libmicrohttpd {
|
||||
openssl = null;
|
||||
gnutls = null;
|
||||
};
|
||||
libmicrohttpd = callPackage ../development/libraries/libmicrohttpd { };
|
||||
|
||||
libmikmod = callPackage ../development/libraries/libmikmod { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user