opentsdb: Upgrade to 2.1.0-RC1

This commit is contained in:
Oliver Charles
2014-11-24 14:40:47 +00:00
parent bc8fd69fe8
commit 751a2943f4
2 changed files with 17 additions and 7 deletions
+11 -6
View File
@@ -1,16 +1,21 @@
{ stdenv, fetchurl, curl, jdk, jre, makeWrapper, nettools, python }:
{ stdenv, autoconf, automake, fetchurl, curl, jdk, jre, makeWrapper, nettools, python }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "opentsdb-2.0.1";
name = "opentsdb-2.1.0-rc1";
src = fetchurl {
url = https://github.com/OpenTSDB/opentsdb/releases/download/v2.0.1/opentsdb-2.0.1.tar.gz;
sha256 = "1q2gkl72yjzd8yrggl0018m9s8mc9zwnz3d8ias54vqh3irypc2c";
url = https://github.com/OpenTSDB/opentsdb/archive/v2.1.0RC1.tar.gz;
sha256 = "01li02j8kjanmas2gxkcz3gsn54nyfyvqdylxz3fqqjgg6y7hrm7";
};
buildPhase = "find .";
buildInputs = [ autoconf automake curl jdk makeWrapper nettools python ];
buildInputs = [ curl jdk makeWrapper nettools python ];
configurePhase = ''
./bootstrap
mkdir build
cd build
../configure --prefix=$out
'';
installPhase = ''
make install