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

37 lines
927 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 {
2015-09-29 12:25:09 +00:00
name = "opentsdb-${version}";
2017-01-20 08:52:30 +00:00
version = "2.3.0";
2014-11-20 12:00:53 +00:00
src = fetchurl {
2016-06-10 08:17:20 +00:00
url = "https://github.com/OpenTSDB/opentsdb/releases/download/v${version}/${name}.tar.gz";
2017-01-20 08:52:30 +00:00
sha256 = "0nip40rh3vl5azfc27yha4ngnm9sw47hf110c90hg0warzz85sch";
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
}