140bd1aef4
- remove 1.7 - 2.4.11 -> 2.4.15 - init 2.5.1 - 3.0.0-alpha-2 -> 3.0.0-alpha-3
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, makeWrapper
|
|
, jdk8_headless
|
|
, jdk11_headless
|
|
, nixosTests
|
|
}:
|
|
|
|
let common = { version, hash, jdk ? jdk11_headless, tests }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "hbase";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/hbase/${version}/hbase-${version}-bin.tar.gz";
|
|
inherit hash;
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -R * $out
|
|
wrapProgram $out/bin/hbase --set-default JAVA_HOME ${jdk.home} \
|
|
--run "test -d /etc/hadoop-conf && export HBASE_CONF_DIR=\''${HBASE_CONF_DIR-'/etc/hadoop-conf/'}" \
|
|
--set-default HBASE_CONF_DIR "$out/conf/"
|
|
'';
|
|
|
|
passthru = { inherit tests; };
|
|
|
|
meta = with lib; {
|
|
description = "A distributed, scalable, big data store";
|
|
homepage = "https://hbase.apache.org";
|
|
license = licenses.asl20;
|
|
maintainers = with lib.maintainers; [ illustris ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
hbase_2_4 = common {
|
|
version = "2.4.15";
|
|
hash = "sha256-KJXpfQ91POVd7ZnKQyIX5qzX4JIZqh3Zn2Pz0chW48g=";
|
|
tests.standalone = nixosTests.hbase_2_4;
|
|
};
|
|
hbase_2_5 = common {
|
|
version = "2.5.1";
|
|
hash = "sha256-ddSa4q43PSJv1W4lzzaXfv4LIThs4n8g8wYufHgsZVE=";
|
|
tests.standalone = nixosTests.hbase2;
|
|
};
|
|
hbase_3_0 = common {
|
|
version = "3.0.0-alpha-3";
|
|
hash = "sha256-TxuiUHc2pTb9nBth1H2XrDRLla2vqM+e1uBU+yY2/EM=";
|
|
tests.standalone = nixosTests.hbase3;
|
|
};
|
|
}
|