influxdb: 0.8.3 -> 0.9.4, fix module

This commit is contained in:
Jaka Hudoklin
2015-11-16 14:22:08 +01:00
parent 88f5cfc126
commit 9c1943fb6f
5 changed files with 138 additions and 199 deletions
+20 -28
View File
@@ -1,37 +1,29 @@
{ stdenv, fetchurl, makeWrapper, zlib, bzip2 }:
{ lib, goPackages, fetchFromGitHub }:
assert stdenv.isLinux;
goPackages.buildGoPackage rec {
name = "influxdb-${rev}";
rev = "v0.9.4";
goPackagePath = "github.com/influxdb/influxdb";
stdenv.mkDerivation rec {
name = "influxdb-${version}";
version = "0.8.3";
arch = if stdenv.system == "x86_64-linux" then "amd64" else "386";
src = fetchurl {
url = "http://s3.amazonaws.com/influxdb/${name}.${arch}.tar.gz";
sha256 = if arch == "amd64" then
"e625902d403434c799f9d9ffc2592a3880f82d435423fde7174e5e4fe0f41148" else
"5abe9f432553e66c8aff86c4311eba16b874678d04b52bfe9e2019c01059ec78";
src = fetchFromGitHub {
inherit rev;
owner = "influxdb";
repo = "influxdb";
sha256 = "0yarymppnlpf2xab57i8jx595v47s5mdwnf13719mc1fv3q84yqn";
};
buildInputs = [ makeWrapper ];
excludedPackages = "test";
installPhase = ''
install -D influxdb $out/bin/influxdb
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/influxdb
wrapProgram "$out/bin/influxdb" \
--prefix LD_LIBRARY_PATH : "${stdenv.cc.cc}/lib:${stdenv.cc.cc}/lib64:${zlib}/lib:${bzip2}/lib"
propagatedBuildInputs = with goPackages; [
raft raft-boltdb snappy crypto gogo.protobuf pool pat toml
gollectd statik liner
];
mkdir -p $out/share/influxdb
cp -R admin scripts config.toml $out/share/influxdb
'';
meta = with stdenv.lib; {
description = "Scalable datastore for metrics, events, and real-time analytics";
homepage = http://influxdb.com/;
meta = with lib; {
description = "An open-source distributed time series database";
license = licenses.mit;
maintainers = [ maintainers.offline ];
platforms = ["i686-linux" "x86_64-linux"];
homepage = https://influxdb.com/;
maintainers = with maintainers; [ offline ];
platforms = with platforms; linux;
};
}