no more goPackages

This commit is contained in:
Kamil Chmielewski
2016-06-09 13:08:00 +02:00
parent 6f51fdd81c
commit 7eb671ebcd
81 changed files with 340 additions and 340 deletions
+3 -6
View File
@@ -1,6 +1,6 @@
{ lib, goPackages, fetchFromGitHub }:
{ lib, buildGoPackage, fetchFromGitHub }:
goPackages.buildGoPackage rec {
buildGoPackage rec {
name = "influxdb-${rev}";
rev = "v0.9.4";
goPackagePath = "github.com/influxdb/influxdb";
@@ -14,10 +14,7 @@ goPackages.buildGoPackage rec {
excludedPackages = "test";
propagatedBuildInputs = with goPackages; [
raft raft-boltdb snappy crypto gogo.protobuf pool pat toml
gollectd statik liner
];
goDeps = ./deps.json;
meta = with lib; {
description = "An open-source distributed time series database";
+21
View File
@@ -0,0 +1,21 @@
[
{
"include": "../../libs.json",
"packages": [
"github.com/peterh/liner",
"github.com/BurntSushi/toml",
"github.com/kimor79/gollectd",
"github.com/bmizerany/pat",
"gopkg.in/fatih/pool.v2",
"github.com/rakyll/statik",
"github.com/armon/go-metrics",
"github.com/boltdb/bolt",
"github.com/golang/snappy",
"github.com/hashicorp/go-msgpack",
"github.com/hashicorp/raft-boltdb",
"golang.org/x/crypto",
"github.com/gogo/protobuf",
"github.com/hashicorp/raft"
]
}
]