about summary refs log tree commit diff
path: root/pkgs/servers/hbase
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/hbase')
-rw-r--r--pkgs/servers/hbase/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/servers/hbase/default.nix b/pkgs/servers/hbase/default.nix
index e11a63754699a..de5be18713ed0 100644
--- a/pkgs/servers/hbase/default.nix
+++ b/pkgs/servers/hbase/default.nix
@@ -10,4 +10,10 @@ stdenv.mkDerivation {
     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;
+  };
 }