83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
60 lines
1 KiB
Nix
60 lines
1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
icu,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
python3,
|
|
xapian,
|
|
xz,
|
|
zstd,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libzim";
|
|
version = "9.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openzim";
|
|
repo = "libzim";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-V81TzoYUFiI+07ooDQtG7ahxQFEh/6Y8IgoceHMSgOk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
ninja
|
|
meson
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
icu
|
|
zstd
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
xapian
|
|
xz
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs scripts
|
|
'';
|
|
|
|
mesonFlags = [
|
|
# Tests are located at https://github.com/openzim/zim-testing-suite
|
|
# "...some tests need up to 16GB of memory..."
|
|
"-Dtest_data_dir=none"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Reference implementation of the ZIM specification";
|
|
homepage = "https://github.com/openzim/libzim";
|
|
changelog = "https://github.com/openzim/libzim/releases/tag/${version}";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|