summary refs log tree commit diff
path: root/pkgs/tools/misc/opentsdb
diff options
context:
space:
mode:
authorOliver Charles <ollie@ocharles.org.uk>2014-11-20 12:23:37 +0000
committerOliver Charles <ollie@ocharles.org.uk>2014-11-24 14:40:47 +0000
commit751a2943f49bdbc9a231ccf2d748c171ed3d6389 (patch)
tree89d262e38d09352c4181e46606621bb671a9c19f /pkgs/tools/misc/opentsdb
parentbc8fd69fe859d193e8ee264af05fc49e4a017e06 (diff)
downloadnixlib-751a2943f49bdbc9a231ccf2d748c171ed3d6389.tar
nixlib-751a2943f49bdbc9a231ccf2d748c171ed3d6389.tar.gz
nixlib-751a2943f49bdbc9a231ccf2d748c171ed3d6389.tar.bz2
nixlib-751a2943f49bdbc9a231ccf2d748c171ed3d6389.tar.lz
nixlib-751a2943f49bdbc9a231ccf2d748c171ed3d6389.tar.xz
nixlib-751a2943f49bdbc9a231ccf2d748c171ed3d6389.tar.zst
nixlib-751a2943f49bdbc9a231ccf2d748c171ed3d6389.zip
opentsdb: Upgrade to 2.1.0-RC1
Diffstat (limited to 'pkgs/tools/misc/opentsdb')
-rw-r--r--pkgs/tools/misc/opentsdb/default.nix17
1 files changed, 11 insertions, 6 deletions
diff --git a/pkgs/tools/misc/opentsdb/default.nix b/pkgs/tools/misc/opentsdb/default.nix
index b1d022330462..2e388f2186f6 100644
--- a/pkgs/tools/misc/opentsdb/default.nix
+++ b/pkgs/tools/misc/opentsdb/default.nix
@@ -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