b9206dd746
Security release for CVE-2023-44981: https://zookeeper.apache.org/security.html#CVE-2023-44981 Also fixes CVE-2021-37533, CVE-2022-2048, CVE-2022-41915, CVE-2022-42003, CVE-2022-42004, CVE-2023-36479, CVE-2023-40167, CVE-2023-41900, CVE-2023-43642, and CVE-2023-4586 in bundled dependencies. Release notes: https://zookeeper.apache.org/doc/r3.7.2/releasenotes.html
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, autoreconfHook
|
|
, jre
|
|
, openssl
|
|
, pkg-config
|
|
# We depend on ZooKeeper for the Jute compiler.
|
|
, zookeeper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zookeeper_mt";
|
|
version = lib.getVersion zookeeper;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/zookeeper/${zookeeper.pname}-${version}/apache-${zookeeper.pname}-${version}.tar.gz";
|
|
hash = "sha512-V1SFPtSytFZMyiR/cgwLA9zPUK5xuarP3leQCQiSfelUHnYMB+R6ZQfSHMHD9t+URvLc+KRFSriLTzethspkpA==";
|
|
};
|
|
|
|
sourceRoot = "apache-${zookeeper.pname}-${version}/zookeeper-client/zookeeper-client-c";
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
jre
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
zookeeper
|
|
];
|
|
|
|
# Generate the C marshallers/unmarshallers for the Jute-encoded
|
|
# definitions.
|
|
preConfigure = ''
|
|
mkdir generated
|
|
cd generated
|
|
java -cp ${zookeeper}/lib/${zookeeper.pname}-jute-${version}.jar \
|
|
org.apache.jute.compiler.generated.Rcc -l c \
|
|
../../../zookeeper-jute/src/main/resources/zookeeper.jute
|
|
cd ..
|
|
'';
|
|
|
|
configureFlags = [
|
|
# We're not going to start test servers in the sandbox anyway.
|
|
"--without-cppunit"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://zookeeper.apache.org";
|
|
description = "Apache Zookeeper";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ commandodev ztzg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|