zim-tools: 3.5.0 -> 3.6.0
Diff: https://github.com/openzim/zim-tools/compare/refs/tags/3.5.0...refs/tags/3.6.0
This commit is contained in:
@@ -2,17 +2,16 @@ diff --git a/meson.build b/meson.build
|
||||
index 344bbaf..ddad570 100644
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -17,8 +17,11 @@ if static_linkage
|
||||
@@ -17,7 +17,11 @@
|
||||
endif
|
||||
endif
|
||||
|
||||
-libzim_dep = dependency('libzim', version:'>=9.2.0', static:static_linkage)
|
||||
-libzim_dep = dependency('libzim', version:'<10.0.0', static:static_linkage)
|
||||
|
||||
-libzim_dep = dependency('libzim', version:['>=9.2.0', '<10.0.0'], static:static_linkage)
|
||||
+libzim_dep = [
|
||||
+ dependency('libzim', version:['>=9.2.0', '<10.0.0'], static:static_linkage),
|
||||
+ dependency('icu-i18n', static:static_linkage),
|
||||
+ dependency('icu-uc', static:static_linkage)
|
||||
+]
|
||||
|
||||
with_xapian_support = compiler.has_header_symbol('zim/zim.h', 'LIBZIM_WITH_XAPIAN')
|
||||
|
||||
|
||||
with_xapian_support = compiler.has_header_symbol(
|
||||
'zim/zim.h', 'LIBZIM_WITH_XAPIAN', dependencies: libzim_dep)
|
||||
|
||||
@@ -15,15 +15,15 @@
|
||||
gtest,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "zim-tools";
|
||||
version = "3.5.0";
|
||||
version = "3.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "openzim";
|
||||
repo = "zim-tools";
|
||||
tag = version;
|
||||
hash = "sha256-gcCo3u1pLm1CnTF3CATOri5+zat839zUbmQnMOVjanI=";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-8+/3+FOq35FSYzpQdpqs5MTMtUO5SYbKLPECFi+IIKw=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
@@ -59,4 +59,4 @@ stdenv.mkDerivation rec {
|
||||
license = lib.licenses.gpl3Plus;
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user