nixpkgs/pkgs/tools/misc/opentsdb/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, autoconf, automake, curl, fetchurl, fetchpatch, jdk8, makeWrapper, nettools
, python2, git
2017-01-20 11:52:30 +03:00
}:
2020-09-19 18:43:55 +03:00
let jdk = jdk8; jre = jdk8.jre; in
2017-01-20 11:52:30 +03:00
stdenv.mkDerivation rec {
pname = "opentsdb";
2020-02-07 19:06:29 +03:00
version = "2.4.0";
2014-11-20 15:00:53 +03:00
src = fetchurl {
url = "https://github.com/OpenTSDB/opentsdb/releases/download/v${version}/${pname}-${version}.tar.gz";
2020-02-07 19:06:29 +03:00
sha256 = "0b0hilqmgz6n1q7irp17h48v8fjpxhjapgw1py8kyav1d51s7mm2";
2014-11-20 15:00:53 +03:00
};
patches = [
(fetchpatch {
name = "CVE-2020-35476.patch";
url = "https://github.com/OpenTSDB/opentsdb/commit/b89fded4ee326dc064b9d7e471e9f29f7d1dede9.patch";
sha256 = "1vb9m0a4fsjqcjagiypvkngzgsw4dil8jrlhn5xbz7rwx8x96wvb";
})
];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ autoconf automake curl jdk nettools python2 git ];
2014-11-20 15:00:53 +03:00
2017-01-20 11:52:30 +03:00
preConfigure = ''
patchShebangs ./build-aux/
2014-11-20 15:23:37 +03:00
./bootstrap
'';
2014-11-20 15:00:53 +03:00
2017-01-20 11:52:30 +03:00
postInstall = ''
2014-11-20 15:00:53 +03:00
wrapProgram $out/bin/tsdb \
--set JAVA_HOME "${jre}" \
--set JAVA "${jre}/bin/java"
'';
meta = with lib; {
description = "Time series database with millisecond precision";
homepage = "http://opentsdb.net";
license = licenses.lgpl21Plus;
2021-01-15 12:19:50 +03:00
platforms = lib.platforms.linux;
maintainers = [ ];
};
2014-11-20 15:00:53 +03:00
}