hbase: New package and NixOS module
This commit is contained in:
@@ -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
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user