depot/third_party/nixpkgs/pkgs/development/libraries/libzim/default.nix
Default email 4cb23072fc Project import generated by Copybara.
GitOrigin-RevId: 6d8215281b2f87a5af9ed7425a26ac575da0438f
2022-01-20 00:45:15 +01:00

48 lines
853 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, icu
, meson
, ninja
, pkg-config
, xz
, zstd
}:
stdenv.mkDerivation rec {
pname = "libzim";
version = "7.1.0";
src = fetchFromGitHub {
owner = "openzim";
repo = pname;
rev = version;
sha256 = "sha256-8mKUYvw/0aqrerNNKk0V7r5LByEaaJLg43R/0pwM4Z8=";
};
nativeBuildInputs = [
ninja
meson
pkg-config
];
buildInputs = [
icu
xz
zstd
];
mesonFlags = [
# Tests are located at https://github.com/openzim/zim-testing-suite
# "...some tests need up to 16GB of memory..."
"-Dtest_data_dir=none"
"-Dwith_xapian=false"
];
meta = with lib; {
description = "Reference implementation of the ZIM specification";
homepage = "https://github.com/openzim/libzim";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fab ];
};
}