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

38 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, autoconf, automake, curl, fetchurl, jdk, jre, makeWrapper, nettools, python }:
2014-11-20 12:00:53 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2015-09-29 13:25:09 +01:00
name = "opentsdb-${version}";
2016-06-10 09:17:20 +01:00
version = "2.2.0";
2014-11-20 12:00:53 +00:00
src = fetchurl {
2016-06-10 09:17:20 +01:00
url = "https://github.com/OpenTSDB/opentsdb/releases/download/v${version}/${name}.tar.gz";
sha256 = "1dfzfsagpviqbifz81pik7pzvadz71kls1idi7jiq7z27vcd92an";
2014-11-20 12:00:53 +00:00
};
2014-11-20 12:23:37 +00:00
buildInputs = [ autoconf automake curl jdk makeWrapper nettools python ];
2014-11-20 12:00:53 +00:00
2014-11-20 12:23:37 +00:00
configurePhase = ''
echo > build-aux/fetchdep.sh.in
2014-11-20 12:23:37 +00:00
./bootstrap
mkdir build
cd build
../configure --prefix=$out
patchShebangs ../build-aux/
2014-11-20 12:23:37 +00:00
'';
2014-11-20 12:00:53 +00:00
installPhase = ''
make install
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
}