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

37 lines
929 B
Nix
Raw Normal View History

2017-01-20 08:52:30 +00:00
{ stdenv, autoconf, automake, curl, fetchurl, jdk, jre, makeWrapper, nettools
, python, git
}:
2014-11-20 12:00:53 +00:00
with stdenv.lib;
2017-01-20 08:52:30 +00:00
stdenv.mkDerivation rec {
pname = "opentsdb";
2020-02-07 16:06:29 +00:00
version = "2.4.0";
2014-11-20 12:00:53 +00:00
src = fetchurl {
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
};
2017-01-20 08:52:30 +00:00
buildInputs = [ autoconf automake curl jdk makeWrapper nettools python git ];
2014-11-20 12:00:53 +00:00
2017-01-20 08:52:30 +00:00
preConfigure = ''
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"
'';
meta = with stdenv.lib; {
description = "Time series database with millisecond precision";
homepage = http://opentsdb.net;
license = licenses.lgpl21Plus;
platforms = stdenv.lib.platforms.linux;
maintainers = [ maintainers.ocharles ];
};
2014-11-20 12:00:53 +00:00
}