2017-01-20 09:52:30 +01:00
|
|
|
{ stdenv, autoconf, automake, curl, fetchurl, jdk, jre, makeWrapper, nettools
|
|
|
|
, python, git
|
|
|
|
}:
|
|
|
|
|
2014-11-20 13:00:53 +01:00
|
|
|
with stdenv.lib;
|
2017-01-20 09:52:30 +01:00
|
|
|
|
2014-12-12 13:42:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-29 14:25:09 +02:00
|
|
|
name = "opentsdb-${version}";
|
2017-01-20 09:52:30 +01:00
|
|
|
version = "2.3.0";
|
2014-11-20 13:00:53 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-06-10 10:17:20 +02:00
|
|
|
url = "https://github.com/OpenTSDB/opentsdb/releases/download/v${version}/${name}.tar.gz";
|
2017-01-20 09:52:30 +01:00
|
|
|
sha256 = "0nip40rh3vl5azfc27yha4ngnm9sw47hf110c90hg0warzz85sch";
|
2014-11-20 13:00:53 +01:00
|
|
|
};
|
|
|
|
|
2017-01-20 09:52:30 +01:00
|
|
|
buildInputs = [ autoconf automake curl jdk makeWrapper nettools python git ];
|
2014-11-20 13:00:53 +01:00
|
|
|
|
2017-01-20 09:52:30 +01:00
|
|
|
preConfigure = ''
|
2014-11-20 13:23:37 +01:00
|
|
|
./bootstrap
|
|
|
|
'';
|
2014-11-20 13:00:53 +01:00
|
|
|
|
2017-01-20 09:52:30 +01:00
|
|
|
postInstall = ''
|
2014-11-20 13:00:53 +01:00
|
|
|
wrapProgram $out/bin/tsdb \
|
|
|
|
--set JAVA_HOME "${jre}" \
|
|
|
|
--set JAVA "${jre}/bin/java"
|
|
|
|
'';
|
2014-11-21 15:43:12 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Time series database with millisecond precision";
|
|
|
|
homepage = http://opentsdb.net;
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-11-27 13:04:45 +01:00
|
|
|
maintainers = [ maintainers.ocharles ];
|
2014-11-21 15:43:12 +01:00
|
|
|
};
|
2014-11-20 13:00:53 +01:00
|
|
|
}
|