Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
909 B
Nix

{
lib,
docopt_cpp,
fetchFromGitHub,
gitUpdater,
icu,
libkiwix,
meson,
ninja,
pkg-config,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "kiwix-tools";
version = "3.7.0-unstable-2024-12-21";
src = fetchFromGitHub {
owner = "kiwix";
repo = "kiwix-tools";
rev = "43b00419dd3f33eb644e1d83c2e802fc200b2de7";
hash = "sha256-Rctb6ZPTXjgSrLRB5VK4CEqYHuEPB7a+SQaNi47cxv0=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
docopt_cpp
icu
libkiwix
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
description = "Command line Kiwix tools";
homepage = "https://kiwix.org";
changelog = "https://github.com/kiwix/kiwix-tools/releases/tag/${finalAttrs.version}";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ colinsane ];
};
})