d75152c028
This adds zimwriterfs, a console tool to create ZIM (http://www.openzim.org) files from a locally stored directory containing 'self-sufficient' HTML content (with pictures, javascript, stylesheets).
23 lines
746 B
Nix
23 lines
746 B
Nix
{ stdenv, fetchgit, automake, autoconf, libtool, lzma, pkgconfig, zimlib, file, zlib }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "zimwriterfs";
|
|
version = "20150710";
|
|
|
|
src = fetchgit {
|
|
url = https://gerrit.wikimedia.org/r/p/openzim.git;
|
|
rev = "165eab3e154c60b5b6436d653dc7c90f56cf7456";
|
|
sha256 = "0x0d3rx6zcc8k66nqkacmwdvslrz70h9bliqawzv90ribq3alb0q";
|
|
};
|
|
|
|
buildInputs = [ automake autoconf libtool lzma pkgconfig zimlib file zlib ];
|
|
setSourceRoot = "cd openzim-*/zimwriterfs; export sourceRoot=`pwd`";
|
|
preConfigurePhases = [ "./autogen.sh" ];
|
|
|
|
meta = {
|
|
description = "A console tool to create ZIM files";
|
|
homepage = http://git.wikimedia.org/log/openzim;
|
|
maintainers = with stdenv.lib.maintainers; [ robbinch ];
|
|
};
|
|
}
|