2016-08-18 09:04:15 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, automake, autoconf, libtool
|
2018-07-21 00:44:44 +00:00
|
|
|
, zimlib, cxxtools, tntnet
|
2015-09-20 04:57:50 +00:00
|
|
|
}:
|
|
|
|
|
2016-08-18 09:04:15 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "zimreader-0.92";
|
2015-09-20 04:57:50 +00:00
|
|
|
|
2016-08-18 09:04:15 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wikimedia";
|
|
|
|
repo = "openzim";
|
|
|
|
rev = "r1.3"; # there multiple tools with different version in the repo
|
|
|
|
sha256 = "0x529137rxy6ld64xqa6xmn93121ripxvkf3sc7hv3wg6km182sw";
|
2015-09-20 04:57:50 +00:00
|
|
|
};
|
|
|
|
|
2016-08-18 09:04:15 +00:00
|
|
|
patchFlags = "-p2";
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "zimreader_tntnet221.patch";
|
|
|
|
url = "https://github.com/wikimedia/openzim/compare/r1.3...juliendehos:3ee5f11eaa811284d340451e6f466529c00f6ef2.patch";
|
|
|
|
sha256 = "0rc5n20svyyndqh7hsynjyblfraphgi0f6khw6f5jq89w9i1j1hd";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-09-20 04:57:50 +00:00
|
|
|
buildInputs = [ automake autoconf libtool zimlib cxxtools tntnet ];
|
2017-11-02 12:54:20 +00:00
|
|
|
setSourceRoot = ''
|
|
|
|
sourceRoot=$(echo */zimreader)
|
|
|
|
'';
|
2017-01-06 13:04:49 +00:00
|
|
|
preConfigure = "./autogen.sh";
|
2015-09-20 04:57:50 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A tool to serve ZIM files using HTTP";
|
|
|
|
homepage = http://git.wikimedia.org/log/openzim;
|
2018-10-07 16:47:15 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-18 09:04:15 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ robbinch juliendehos ];
|
2016-08-06 14:00:59 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2015-09-20 04:57:50 +00:00
|
|
|
};
|
|
|
|
}
|