2021-09-14 09:15:08 +01:00
|
|
|
{ lib, stdenv, autoconf, automake, curl, fetchurl, fetchpatch, jdk8, makeWrapper, nettools
|
2022-01-11 23:40:02 +00:00
|
|
|
, python2, git
|
2017-01-20 08:52:30 +00:00
|
|
|
}:
|
|
|
|
|
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-09-14 09:15:08 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2020-35476.patch";
|
|
|
|
url = "https://github.com/OpenTSDB/opentsdb/commit/b89fded4ee326dc064b9d7e471e9f29f7d1dede9.patch";
|
|
|
|
sha256 = "1vb9m0a4fsjqcjagiypvkngzgsw4dil8jrlhn5xbz7rwx8x96wvb";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2022-03-31 02:11:06 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper autoconf automake ];
|
|
|
|
buildInputs = [ curl jdk nettools python2 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 = [ ];
|
2014-11-21 14:43:12 +00:00
|
|
|
};
|
2014-11-20 12:00:53 +00:00
|
|
|
}
|