about summary refs log tree commit diff
path: root/pkgs/servers/hbase
diff options
context:
space:
mode:
authorOliver Charles <ollie@ocharles.org.uk>2014-11-21 14:43:12 +0000
committerOliver Charles <ollie@ocharles.org.uk>2014-11-24 14:40:48 +0000
commit9cab0e1b8afdfb49d0aa90c74d1b58c584d04713 (patch)
tree98f6b21596119830affc32418afb9a69038a1ca9 /pkgs/servers/hbase
parentabd24523f3775e16845329ca6363c6e06162cabb (diff)
Add meta information to hbase, bosun, scollector, opentsdb
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;
+  };
 }