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.
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{ coreutils
|
|
, fetchurl
|
|
, gnugrep
|
|
, jre_headless
|
|
, lib
|
|
, makeBinaryWrapper
|
|
, nixosTests
|
|
, stdenv
|
|
, stdenvNoCC
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "opensearch";
|
|
version = "2.17.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://artifacts.opensearch.org/releases/bundle/opensearch/${finalAttrs.version}/opensearch-${finalAttrs.version}-linux-x64.tar.gz";
|
|
hash = "sha256-9m7Vt+x4SPOBAqVL88gufSmqhvAiCcnOi7bL43XzCiU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeBinaryWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
jre_headless
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
cp -R bin config lib modules plugins $out
|
|
|
|
substituteInPlace $out/bin/opensearch \
|
|
--replace 'bin/opensearch-keystore' "$out/bin/opensearch-keystore"
|
|
|
|
wrapProgram $out/bin/opensearch \
|
|
--prefix PATH : "${lib.makeBinPath [ gnugrep coreutils ]}" \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ]}:$out/plugins/opensearch-knn/lib/" \
|
|
--set JAVA_HOME "${jre_headless}"
|
|
|
|
wrapProgram $out/bin/opensearch-plugin --set JAVA_HOME "${jre_headless}"
|
|
|
|
rm $out/bin/opensearch-cli
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = nixosTests.opensearch;
|
|
|
|
meta = {
|
|
description = "Open Source, Distributed, RESTful Search Engine";
|
|
homepage = "https://github.com/opensearch-project/OpenSearch";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ shyim ];
|
|
platforms = lib.platforms.unix;
|
|
sourceProvenance = with lib.sourceTypes; [
|
|
binaryBytecode
|
|
binaryNativeCode
|
|
];
|
|
};
|
|
})
|