summary refs log tree commit diff
path: root/pkgs/servers/hbase/default.nix
blob: 3d05933f513064b0857a3c8a3ef9067be552797e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, makeWrapper }:
stdenv.mkDerivation rec {
  pname = "hbase";
  version = "0.98.24";

  src = fetchurl {
    url = "mirror://apache/hbase/${version}/hbase-${version}-hadoop2-bin.tar.gz";
    sha256 = "0kz72wqsii09v9hxkw10mzyvjhji5sx3l6aijjalgbybavpcxglb";
  };

  buildInputs = [ makeWrapper ];
  installPhase = ''
    mkdir -p $out
    cp -R * $out
  '';
  meta = with stdenv.lib; {
    description = "A distributed, scalable, big data store";
    homepage = https://hbase.apache.org;
    license = licenses.asl20;
    platforms = stdenv.lib.platforms.linux;
  };
}