2021-09-14 10:15:08 +02:00
|
|
|
{ lib, stdenv, autoconf, automake, curl, fetchurl, fetchpatch, jdk8, makeWrapper, nettools
|
2017-01-20 09:52:30 +01:00
|
|
|
, python, git
|
|
|
|
}:
|
|
|
|
|
2020-09-19 17:43:55 +02:00
|
|
|
let jdk = jdk8; jre = jdk8.jre; in
|
2017-01-20 09:52:30 +01:00
|
|
|
|
2014-12-12 13:42:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "opentsdb";
|
2020-02-07 17:06:29 +01:00
|
|
|
version = "2.4.0";
|
2014-11-20 13:00:53 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://github.com/OpenTSDB/opentsdb/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2020-02-07 17:06:29 +01:00
|
|
|
sha256 = "0b0hilqmgz6n1q7irp17h48v8fjpxhjapgw1py8kyav1d51s7mm2";
|
2014-11-20 13:00:53 +01:00
|
|
|
};
|
|
|
|
|
2021-09-14 10:15:08 +02:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2020-35476.patch";
|
|
|
|
url = "https://github.com/OpenTSDB/opentsdb/commit/b89fded4ee326dc064b9d7e471e9f29f7d1dede9.patch";
|
|
|
|
sha256 = "1vb9m0a4fsjqcjagiypvkngzgsw4dil8jrlhn5xbz7rwx8x96wvb";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-02-07 10:17:39 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ autoconf automake curl jdk nettools python git ];
|
2014-11-20 13:00:53 +01:00
|
|
|
|
2017-01-20 09:52:30 +01:00
|
|
|
preConfigure = ''
|
2017-01-21 09:17:52 +01:00
|
|
|
patchShebangs ./build-aux/
|
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
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-11-21 15:43:12 +01:00
|
|
|
description = "Time series database with millisecond precision";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://opentsdb.net";
|
2014-11-21 15:43:12 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.linux;
|
2020-12-07 15:26:45 +01:00
|
|
|
maintainers = [ ];
|
2014-11-21 15:43:12 +01:00
|
|
|
};
|
2014-11-20 13:00:53 +01:00
|
|
|
}
|