mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
52 lines
1.1 KiB
Nix
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 ];
|
|
};
|
|
}
|