mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
60 lines
1.6 KiB
Nix
60 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, makeWrapper
|
|
, 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 = "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.18";
|
|
hash = "sha256-zYrHAxzlPRrRchHGVp3fhQT0BD0+wavZ4cAWncrv+MQ=";
|
|
tests.standalone = nixosTests.hbase_2_4;
|
|
};
|
|
hbase_2_5 = common {
|
|
version = "2.5.9";
|
|
hash = "sha256-rJGeJ9zmUn28q1Sfk5cdEdEZxbAnvFjRjdcTCx9x1Qc=";
|
|
tests.standalone = nixosTests.hbase_2_5;
|
|
};
|
|
hbase_2_6 = common {
|
|
version = "2.6.0";
|
|
hash = "sha256-zjQ5HgUCiHmrMQuyMN4IAuLR0fVrJ+YKDUfPQb05Dp4=";
|
|
tests.standalone = nixosTests.hbase2;
|
|
};
|
|
hbase_3_0 = common {
|
|
version = "3.0.0-beta-1";
|
|
hash = "sha256-lmeaH2gDP6sBwZpzROKhR2Je7dcrwnq7qlMUh0B5fZs=";
|
|
tests.standalone = nixosTests.hbase3;
|
|
};
|
|
}
|