mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
66 lines
2.2 KiB
Nix
66 lines
2.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, curl
|
|
|
|
# Optional Dependencies
|
|
, openssl ? null, zlib ? null, libgcrypt ? null, gnutls ? null
|
|
}:
|
|
|
|
let
|
|
mkFlag = trueStr: falseStr: cond: name: val:
|
|
if cond == null then null else
|
|
"--${if cond != false then trueStr else falseStr}${name}${if val != null && cond != false then "=${val}" else ""}";
|
|
mkEnable = mkFlag "enable-" "disable-";
|
|
mkWith = mkFlag "with-" "without-";
|
|
mkOther = mkFlag "" "" true;
|
|
|
|
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
|
|
|
|
optOpenssl = shouldUsePkg openssl;
|
|
optZlib = shouldUsePkg zlib;
|
|
hasSpdy = optOpenssl != null && optZlib != null;
|
|
|
|
optLibgcrypt = shouldUsePkg libgcrypt;
|
|
optGnutls = shouldUsePkg gnutls;
|
|
hasHttps = optLibgcrypt != null && optGnutls != null;
|
|
in
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "libmicrohttpd-0.9.41";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
|
|
sha256 = "0z3s3aplgxj8cj947i4rxk9wzvg68b8hbn71fyipc7aagmivx64p";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = optional doCheck curl
|
|
++ optionals hasSpdy [ optOpenssl optZlib ]
|
|
++ optionals hasHttps [ optLibgcrypt optGnutls ];
|
|
|
|
configureFlags = [
|
|
(mkWith true "threads" "posix")
|
|
(mkEnable true "doc" null)
|
|
(mkEnable false "examples" null)
|
|
(mkEnable true "epoll" "auto")
|
|
(mkEnable doCheck "curl" null)
|
|
(mkEnable hasSpdy "spdy" null)
|
|
(mkEnable true "messages" null)
|
|
(mkEnable true "postprocessor" null)
|
|
(mkWith hasHttps "gnutls" null)
|
|
(mkEnable hasHttps "https" null)
|
|
(mkEnable true "bauth" null)
|
|
(mkEnable true "dauth" null)
|
|
];
|
|
|
|
# Disabled because the tests can time-out.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Embeddable HTTP server library";
|
|
homepage = http://www.gnu.org/software/libmicrohttpd/;
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|