Add meta information to hbase, bosun, scollector, opentsdb

Changed files
+28
pkgs
servers
hbase
monitoring
tools
misc
opentsdb
+6
pkgs/servers/hbase/default.nix
···
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;
+
};
}
+9
pkgs/servers/monitoring/bosun/default.nix
···
cp bosun $out/bin
'';
+
meta = with stdenv.lib; {
+
description = "Time series alerting framework";
+
longDescription = ''
+
An advanced, open-source monitoring and alerting system by Stack Exchange.
+
'';
+
homepage = http://bosun.org;
+
license = licenses.mit;
+
platforms = stdenv.lib.platforms.linux;
+
};
}
+6
pkgs/servers/monitoring/bosun/scollector.nix
···
cp scollector $out/bin
'';
+
meta = with stdenv.lib; {
+
description = "Collect system information and store it in OpenTSDB or Bosun";
+
homepage = http://bosun.org/scollector;
+
license = licenses.mit;
+
platforms = stdenv.lib.platforms.linux;
+
};
}
+7
pkgs/tools/misc/opentsdb/default.nix
···
--set JAVA_HOME "${jre}" \
--set JAVA "${jre}/bin/java"
'';
+
+
meta = with stdenv.lib; {
+
description = "Time series database with millisecond precision";
+
homepage = http://opentsdb.net;
+
license = licenses.lgpl21Plus;
+
platforms = stdenv.lib.platforms.linux;
+
};
}