hbase: New package and NixOS module

This commit is contained in:
Oliver Charles
2014-11-20 11:29:07 +00:00
parent 4c1d65130f
commit 8964667bcd
5 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ stdenv, fetchurl, jre, makeWrapper }:
stdenv.mkDerivation {
name = "hbase-0.98.8";
src = fetchurl {
url = http://mirror.gopotato.co.uk/apache/hbase/stable/hbase-0.98.8-hadoop2-bin.tar.gz;
sha256 = "0nvxaqpw8v2hg6mn2p2zxj3y6r4dj4xzxmp8rfmv6m6algn5apv6";
};
buildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out
cp -R * $out
'';
}

View File

@@ -12801,5 +12801,6 @@ let
youtubeDL = youtube-dl; # added 2014-10-26
rdiff_backup = rdiff-backup; # added 2014-11-23
hbase = callPackage ../servers/hbase {};
}; in self; in pkgs