nixpkgs/pkgs/tools/misc/opentsdb/default.nix
2014-11-24 14:40:47 +00:00

27 lines
658 B
Nix

{ stdenv, autoconf, automake, fetchurl, curl, jdk, jre, makeWrapper, nettools, python }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "opentsdb-2.1.0-rc1";
src = fetchurl {
url = https://github.com/OpenTSDB/opentsdb/archive/v2.1.0RC1.tar.gz;
sha256 = "01li02j8kjanmas2gxkcz3gsn54nyfyvqdylxz3fqqjgg6y7hrm7";
};
buildInputs = [ autoconf automake curl jdk makeWrapper nettools python ];
configurePhase = ''
./bootstrap
mkdir build
cd build
../configure --prefix=$out
'';
installPhase = ''
make install
wrapProgram $out/bin/tsdb \
--set JAVA_HOME "${jre}" \
--set JAVA "${jre}/bin/java"
'';
}