2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, autoconf, automake, curl, fetchurl, jdk8, makeWrapper, nettools
|
2017-01-20 08:52:30 +00:00
|
|
|
, python, git
|
|
|
|
}:
|
|
|
|
|
2020-09-19 16:43:55 +01:00
|
|
|
let jdk = jdk8; jre = jdk8.jre; in
|
2017-01-20 08:52:30 +00:00
|
|
|
|
2014-12-12 12:42:39 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "opentsdb";
|
2020-02-07 16:06:29 +00:00
|
|
|
version = "2.4.0";
|
2014-11-20 12:00:53 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/OpenTSDB/opentsdb/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2020-02-07 16:06:29 +00:00
|
|
|
sha256 = "0b0hilqmgz6n1q7irp17h48v8fjpxhjapgw1py8kyav1d51s7mm2";
|
2014-11-20 12:00:53 +00:00
|
|
|
};
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ autoconf automake curl jdk nettools python git ];
|
2014-11-20 12:00:53 +00:00
|
|
|
|
2017-01-20 08:52:30 +00:00
|
|
|
preConfigure = ''
|
2017-01-21 08:17:52 +00:00
|
|
|
patchShebangs ./build-aux/
|
2014-11-20 12:23:37 +00:00
|
|
|
./bootstrap
|
|
|
|
'';
|
2014-11-20 12:00:53 +00:00
|
|
|
|
2017-01-20 08:52:30 +00:00
|
|
|
postInstall = ''
|
2014-11-20 12:00:53 +00:00
|
|
|
wrapProgram $out/bin/tsdb \
|
|
|
|
--set JAVA_HOME "${jre}" \
|
|
|
|
--set JAVA "${jre}/bin/java"
|
|
|
|
'';
|
2014-11-21 14:43:12 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-11-21 14:43:12 +00:00
|
|
|
description = "Time series database with millisecond precision";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://opentsdb.net";
|
2014-11-21 14:43:12 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2020-12-07 14:26:45 +00:00
|
|
|
maintainers = [ ];
|
2021-01-25 14:13:53 +00:00
|
|
|
knownVulnerabilities = [
|
|
|
|
"CVE-2020-35476" # https://github.com/OpenTSDB/opentsdb/issues/2051
|
|
|
|
];
|
2014-11-21 14:43:12 +00:00
|
|
|
};
|
2014-11-20 12:00:53 +00:00
|
|
|
}
|