libmicrohttpd: 0.9.41 -> 0.9.42

This commit is contained in:
William A. Kennington III 2015-05-26 17:52:17 -07:00
parent 539a954955
commit 89d9a6079c
2 changed files with 6 additions and 4 deletions

View File

@ -17,11 +17,11 @@ let
in in
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libmicrohttpd-0.9.41"; name = "libmicrohttpd-0.9.42";
src = fetchurl { src = fetchurl {
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
sha256 = "0z3s3aplgxj8cj947i4rxk9wzvg68b8hbn71fyipc7aagmivx64p"; sha256 = "0nvxmm6z6wcq1vl6l92rids0i0va184y86bkc10dl0vh6rrj0d80";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
@ -33,6 +33,7 @@ stdenv.mkDerivation rec {
(mkWith true "threads" "posix") (mkWith true "threads" "posix")
(mkEnable true "doc" null) (mkEnable true "doc" null)
(mkEnable false "examples" null) (mkEnable false "examples" null)
(mkEnable true "poll" "auto")
(mkEnable true "epoll" "auto") (mkEnable true "epoll" "auto")
(mkEnable doCheck "curl" null) (mkEnable doCheck "curl" null)
(mkEnable hasSpdy "spdy" null) (mkEnable hasSpdy "spdy" null)

View File

@ -6919,8 +6919,9 @@ let
libmemcached = callPackage ../development/libraries/libmemcached { }; libmemcached = callPackage ../development/libraries/libmemcached { };
libmicrohttpd = callPackage ../development/libraries/libmicrohttpd { libmicrohttpd-full = callPackage ../development/libraries/libmicrohttpd { };
openssl = null;
libmicrohttpd = libmicrohttpd-full.override {
gnutls = null; gnutls = null;
}; };