2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper }:
|
2015-07-22 10:10:03 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "hbase";
|
2017-01-20 09:51:05 +01:00
|
|
|
version = "0.98.24";
|
2015-07-22 10:10:03 +02:00
|
|
|
|
2014-11-20 12:29:07 +01:00
|
|
|
src = fetchurl {
|
2015-07-22 10:10:03 +02:00
|
|
|
url = "mirror://apache/hbase/${version}/hbase-${version}-hadoop2-bin.tar.gz";
|
2017-01-20 09:51:05 +01:00
|
|
|
sha256 = "0kz72wqsii09v9hxkw10mzyvjhji5sx3l6aijjalgbybavpcxglb";
|
2014-11-20 12:29:07 +01:00
|
|
|
};
|
2015-07-22 10:10:03 +02:00
|
|
|
|
2014-11-20 12:29:07 +01:00
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -R * $out
|
|
|
|
'';
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-11-21 15:43:12 +01:00
|
|
|
description = "A distributed, scalable, big data store";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://hbase.apache.org";
|
2014-11-21 15:43:12 +01:00
|
|
|
license = licenses.asl20;
|
2021-01-15 08:07:56 +01:00
|
|
|
platforms = lib.platforms.linux;
|
2014-11-21 15:43:12 +01:00
|
|
|
};
|
2014-11-20 12:29:07 +01:00
|
|
|
}
|