opensearch: minor cleanup and reformat

This commit is contained in:
Pol Dellaiera 2023-08-15 19:10:20 +02:00
parent f059023563
commit a66786ecba
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -1,14 +1,12 @@
{ lib
{ coreutils
, fetchurl
, gnugrep
, jre_headless
, lib
, makeBinaryWrapper
, nixosTests
, stdenv
, stdenvNoCC
, fetchurl
, makeWrapper
, jre_headless
, gnugrep
, coreutils
, autoPatchelfHook
, zlib
, nixosTests
}:
stdenvNoCC.mkDerivation (finalAttrs: {
@ -20,8 +18,13 @@ stdenvNoCC.mkDerivation (finalAttrs: {
hash = "sha256-A9YjwtmacQDC8PrdyP/ai6J+roqmP/bz99rSM3votow=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre_headless ];
nativeBuildInputs = [
makeBinaryWrapper
];
buildInputs = [
jre_headless
];
installPhase = ''
runHook preInstall
@ -48,12 +51,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
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
];
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ shyim ];
};
})