mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
37 lines
929 B
Nix
37 lines
929 B
Nix
{ stdenv, autoconf, automake, curl, fetchurl, jdk, jre, makeWrapper, nettools
|
|
, python, git
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opentsdb";
|
|
version = "2.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/OpenTSDB/opentsdb/releases/download/v${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1lf1gynr11silla4bsrkwqv023dxirsb88ncs2qmc2ng35593fjd";
|
|
};
|
|
|
|
buildInputs = [ autoconf automake curl jdk makeWrapper nettools python git ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs ./build-aux/
|
|
./bootstrap
|
|
'';
|
|
|
|
postInstall = ''
|
|
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 ];
|
|
};
|
|
}
|