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

36 lines
984 B
Nix
Raw Normal View History

{ stdenv, autoconf, automake, curl, fetchurl, jdk, jre, makeWrapper, nettools, python }:
2014-11-20 13:00:53 +01:00
with stdenv.lib;
stdenv.mkDerivation rec {
2014-11-20 13:23:37 +01:00
name = "opentsdb-2.1.0-rc1";
2014-11-20 13:00:53 +01:00
src = fetchurl {
url = https://github.com/OpenTSDB/opentsdb/releases/download/v2.1.0RC1/opentsdb-2.1.0RC1.tar.gz;
sha256 = "1vvhzdl2wgbzy2lvlyx40pks47ma6szs9ka4dwjf123xyixv0rmz";
2014-11-20 13:00:53 +01:00
};
2014-11-20 13:23:37 +01:00
buildInputs = [ autoconf automake curl jdk makeWrapper nettools python ];
2014-11-20 13:00:53 +01:00
2014-11-20 13:23:37 +01:00
configurePhase = ''
echo > build-aux/fetchdep.sh.in
2014-11-20 13:23:37 +01:00
./bootstrap
mkdir build
cd build
../configure --prefix=$out
'';
2014-11-20 13:00:53 +01: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 13:00:53 +01:00
}