1 { lib, stdenv, fetchFromGitHub
2 , meson, ninja, pkg-config
3 , docopt_cpp, file, gumbo, mustache-hpp, zimlib, zlib
7 stdenv.mkDerivation rec {
11 src = fetchFromGitHub {
15 sha256 = "sha256-A1A0Ri2OwPyqpx0f5CPJL3zAwo2I/AiRKpmk3r4DeTc=";
18 nativeBuildInputs = [ meson ninja pkg-config ];
19 buildInputs = [ docopt_cpp file gumbo mustache-hpp zimlib zlib ];
21 nativeCheckInputs = [ gtest ];
25 description = "Various ZIM command line tools";
26 homepage = "https://github.com/openzim/zim-tools";
27 maintainers = with lib.maintainers; [ robbinch ];
28 license = lib.licenses.gpl3Plus;
29 platforms = lib.platforms.all;