1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
{
stdenv,
fetchFromGitHub,
lib,
db,
file,
libnsl,
writableTmpDirAsHomeHook,
}:
stdenv.mkDerivation (finalAttr: {
pname = "re-Isearch";
version = "2.20220925.4.0a-unstable-2025-03-16";
src = fetchFromGitHub {
owner = "re-Isearch";
repo = "re-Isearch";
rev = "56e0dfbe7468881b3958ca8e630f41a5354e9873";
sha256 = "sha256-tI75D02/sFEkHDQX/BpDlu24WNP6Qh9G0MIfEvs8npM=";
};
# Upstream issue: https://github.com/re-Isearch/re-Isearch/issues/11
patches = [ ./0001-fix-JsonHitTable-undefined-reference.patch ];
postPatch = ''
# Fix gcc-13 build due to missing <cstdint> include.
sed -e '1i #include <cstdint>' -i src/mmap.cxx
'';
nativeBuildInputs = [ writableTmpDirAsHomeHook ];
buildinputs = [
db
file # libmagic
libnsl
];
makeFlags = [
"CC=g++"
"cc=gcc"
"LD=g++"
];
preBuild = ''
cd build
make clean # clean up pre-built objects in the source
makeFlagsArray+=(
EXTRA_INC="-I${db.dev}/include -I${lib.getDev file}/include"
LD_PATH="-L../lib -L${db.out}/lib -L${file}/lib -L${libnsl}/lib"
)
'';
preInstall = ''
mkdir -p $out/{bin,lib}
'';
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,lib}
cp ../bin/{Iindex,Isearch,Iutil,Idelete,zpresent,Iwatch,zipper} $out/bin
cp ../lib/*.so $out/lib/
runHook postInstall
'';
meta = {
description = "Novel multimodal search and retrieval engine";
homepage = "https://nlnet.nl/project/Re-iSearch/";
license = lib.licenses.asl20;
platforms = [ "x86_64-linux" ];
maintainers = [ lib.maintainers.astro ] ++ lib.teams.ngi.members;
};
})
|