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

27 lines
658 B
Nix
Raw Normal View History

2014-11-20 12:23:37 +00:00
{ stdenv, autoconf, automake, fetchurl, curl, jdk, jre, makeWrapper, nettools, python }:
2014-11-20 12:00:53 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2014-11-20 12:23:37 +00:00
name = "opentsdb-2.1.0-rc1";
2014-11-20 12:00:53 +00:00
src = fetchurl {
2014-11-20 12:23:37 +00:00
url = https://github.com/OpenTSDB/opentsdb/archive/v2.1.0RC1.tar.gz;
sha256 = "01li02j8kjanmas2gxkcz3gsn54nyfyvqdylxz3fqqjgg6y7hrm7";
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 = ''
./bootstrap
mkdir build
cd build
../configure --prefix=$out
'';
2014-11-20 12:00:53 +00:00
installPhase = ''
make install
wrapProgram $out/bin/tsdb \
--set JAVA_HOME "${jre}" \
--set JAVA "${jre}/bin/java"
'';
}