nixpkgs/pkgs/applications/search/re-isearch/default.nix
Sergei Trofimovich 29a30806ca re-isearch: fix gcc-13 build
Without the change the build fails in `master` as
https://hydra.nixos.org/build/250983051:

    ../src/mmap.cxx:29:19: error: 'SIZE_MAX' was not declared in this scope
       29 | # define MMAP_MAX SIZE_MAX/4L
          |                   ^~~~~~~~
2024-02-25 19:23:56 +00:00

52 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, lib, db, file, libnsl }:
stdenv.mkDerivation rec {
pname = "re-Isearch";
version = "unstable-2022-03-24";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "e5953ea6c84285283be3689df7065908369cdbaf";
sha256 = "sha256-D0PDqlWzIOHqdS2MlNzR2T5cyhiLcFlf30v6eFokoRQ=";
};
postPatch = ''
# Fix gcc-13 build due to missing <cstdint> include.
sed -e '1i #include <cstdint>' -i src/mmap.cxx
'';
buildinputs = [
db
file # libmagic
libnsl
];
makeFlags = [
"CC=g++" "cc=gcc" "LD=g++"
"INSTALL=${placeholder "out"}/bin"
];
preBuild = ''
cd build
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}
'';
postInstall = ''
cp ../lib/*.so $out/lib/
'';
meta = with lib; {
description = "Novel multimodal search and retrieval engine";
homepage = "https://github.com/re-Isearch/";
license = licenses.asl20;
maintainers = [ maintainers.astro ];
};
}