buildGoPackage: remove Go deps file libs.json
After #16017 there were a lot of comments saying that `nix` would be better than `JSON` for Go packages dependency sets. As said in https://github.com/NixOS/nixpkgs/pull/16017#issuecomment-229624046 > Because of the content-addressable store, if two programs have the > same dependency it will already result in the same derivation in > the > store. Git also has compression in the pack files so it won't make > much difference to duplicate the dependencies on disk. And finally > most users will just use the binary builds so it won't make any > differences to them. This PR removes `libs.json` file and puts all package dependencies in theirs `deps.json`.
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/prometheus/client_golang"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,14 +1,65 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/prometheus/client_golang",
|
||||
"github.com/prometheus/client_model",
|
||||
"github.com/prometheus/procfs",
|
||||
"bitbucket.org/ww/goautoneg",
|
||||
"github.com/beorn7/perks",
|
||||
"github.com/golang/protobuf",
|
||||
"github.com/matttproud/golang_protobuf_extensions"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/golang/protobuf",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/protobuf",
|
||||
"rev": "59b73b37c1e45995477aae817e4a653c89a858db",
|
||||
"sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_model",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_model",
|
||||
"rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6",
|
||||
"sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/beorn7/perks",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/beorn7/perks",
|
||||
"rev": "b965b613227fddccbfffe13eae360ed3fa822f8d",
|
||||
"sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/matttproud/golang_protobuf_extensions",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/matttproud/golang_protobuf_extensions",
|
||||
"rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a",
|
||||
"sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/procfs",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/procfs",
|
||||
"rev": "c91d8eefde16bd047416409eb56353ea84a186e4",
|
||||
"sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "bitbucket.org/ww/goautoneg",
|
||||
"fetch": {
|
||||
"type": "hg",
|
||||
"url": "bitbucket.org/ww/goautoneg",
|
||||
"rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675",
|
||||
"sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,14 +1,65 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/prometheus/client_golang",
|
||||
"github.com/prometheus/client_model",
|
||||
"github.com/matttproud/golang_protobuf_extensions",
|
||||
"github.com/prometheus/procfs",
|
||||
"github.com/beorn7/perks",
|
||||
"github.com/golang/protobuf",
|
||||
"bitbucket.org/ww/goautoneg"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/golang/protobuf",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/protobuf",
|
||||
"rev": "59b73b37c1e45995477aae817e4a653c89a858db",
|
||||
"sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_model",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_model",
|
||||
"rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6",
|
||||
"sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/beorn7/perks",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/beorn7/perks",
|
||||
"rev": "b965b613227fddccbfffe13eae360ed3fa822f8d",
|
||||
"sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/matttproud/golang_protobuf_extensions",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/matttproud/golang_protobuf_extensions",
|
||||
"rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a",
|
||||
"sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/procfs",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/procfs",
|
||||
"rev": "c91d8eefde16bd047416409eb56353ea84a186e4",
|
||||
"sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "bitbucket.org/ww/goautoneg",
|
||||
"fetch": {
|
||||
"type": "hg",
|
||||
"url": "bitbucket.org/ww/goautoneg",
|
||||
"rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675",
|
||||
"sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,16 +1,83 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/golang/glog",
|
||||
"github.com/prometheus/client_golang",
|
||||
"github.com/prometheus/client_model",
|
||||
"github.com/antonlindstrom/mesos_stats",
|
||||
"github.com/beorn7/perks",
|
||||
"github.com/golang/protobuf",
|
||||
"github.com/matttproud/golang_protobuf_extensions",
|
||||
"github.com/prometheus/procfs",
|
||||
"bitbucket.org/ww/goautoneg"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/golang/protobuf",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/protobuf",
|
||||
"rev": "59b73b37c1e45995477aae817e4a653c89a858db",
|
||||
"sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_model",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_model",
|
||||
"rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6",
|
||||
"sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/beorn7/perks",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/beorn7/perks",
|
||||
"rev": "b965b613227fddccbfffe13eae360ed3fa822f8d",
|
||||
"sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/matttproud/golang_protobuf_extensions",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/matttproud/golang_protobuf_extensions",
|
||||
"rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a",
|
||||
"sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/procfs",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/procfs",
|
||||
"rev": "c91d8eefde16bd047416409eb56353ea84a186e4",
|
||||
"sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/golang/glog",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/glog",
|
||||
"rev": "fca8c8854093a154ff1eb580aae10276ad6b1b5f",
|
||||
"sha256": "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "bitbucket.org/ww/goautoneg",
|
||||
"fetch": {
|
||||
"type": "hg",
|
||||
"url": "bitbucket.org/ww/goautoneg",
|
||||
"rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675",
|
||||
"sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/antonlindstrom/mesos_stats",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/antonlindstrom/mesos_stats",
|
||||
"rev": "0c6ea494c19bedc67ebb85ce3d187ec21050e920",
|
||||
"sha256": "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,15 +1,74 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/prometheus/client_golang",
|
||||
"github.com/prometheus/client_model",
|
||||
"github.com/matttproud/golang_protobuf_extensions",
|
||||
"github.com/prometheus/procfs",
|
||||
"github.com/beorn7/perks",
|
||||
"github.com/golang/protobuf",
|
||||
"bitbucket.org/ww/goautoneg",
|
||||
"github.com/go-sql-driver/mysql"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/golang/protobuf",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/protobuf",
|
||||
"rev": "59b73b37c1e45995477aae817e4a653c89a858db",
|
||||
"sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_model",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_model",
|
||||
"rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6",
|
||||
"sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/beorn7/perks",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/beorn7/perks",
|
||||
"rev": "b965b613227fddccbfffe13eae360ed3fa822f8d",
|
||||
"sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/matttproud/golang_protobuf_extensions",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/matttproud/golang_protobuf_extensions",
|
||||
"rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a",
|
||||
"sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/procfs",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/procfs",
|
||||
"rev": "c91d8eefde16bd047416409eb56353ea84a186e4",
|
||||
"sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "bitbucket.org/ww/goautoneg",
|
||||
"fetch": {
|
||||
"type": "hg",
|
||||
"url": "bitbucket.org/ww/goautoneg",
|
||||
"rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675",
|
||||
"sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/go-sql-driver/mysql",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/go-sql-driver/mysql",
|
||||
"rev": "fb7299726d2e68745a8805b14f2ff44b5c2cfa84",
|
||||
"sha256": "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,16 +1,83 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/prometheus/log",
|
||||
"github.com/prometheus/client_golang",
|
||||
"github.com/prometheus/client_model",
|
||||
"github.com/prometheus/procfs",
|
||||
"github.com/Sirupsen/logrus",
|
||||
"github.com/beorn7/perks",
|
||||
"github.com/golang/protobuf",
|
||||
"github.com/matttproud/golang_protobuf_extensions",
|
||||
"bitbucket.org/ww/goautoneg"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/Sirupsen/logrus",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Sirupsen/logrus",
|
||||
"rev": "be52937128b38f1d99787bb476c789e2af1147f1",
|
||||
"sha256": "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/golang/protobuf",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/protobuf",
|
||||
"rev": "59b73b37c1e45995477aae817e4a653c89a858db",
|
||||
"sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_model",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_model",
|
||||
"rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6",
|
||||
"sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/beorn7/perks",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/beorn7/perks",
|
||||
"rev": "b965b613227fddccbfffe13eae360ed3fa822f8d",
|
||||
"sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/matttproud/golang_protobuf_extensions",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/matttproud/golang_protobuf_extensions",
|
||||
"rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a",
|
||||
"sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/procfs",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/procfs",
|
||||
"rev": "c91d8eefde16bd047416409eb56353ea84a186e4",
|
||||
"sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "bitbucket.org/ww/goautoneg",
|
||||
"fetch": {
|
||||
"type": "hg",
|
||||
"url": "bitbucket.org/ww/goautoneg",
|
||||
"rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675",
|
||||
"sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/log",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/log",
|
||||
"rev": "439e5db48fbb50ebbaf2c816030473a62f505f55",
|
||||
"sha256": "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,11 +1,38 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/golang/protobuf",
|
||||
"github.com/matttproud/golang_protobuf_extensions",
|
||||
"github.com/prometheus/client_golang",
|
||||
"github.com/prometheus/client_model"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/golang/protobuf",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/protobuf",
|
||||
"rev": "59b73b37c1e45995477aae817e4a653c89a858db",
|
||||
"sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_model",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_model",
|
||||
"rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6",
|
||||
"sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/matttproud/golang_protobuf_extensions",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/matttproud/golang_protobuf_extensions",
|
||||
"rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a",
|
||||
"sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,15 +1,74 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/julienschmidt/httprouter",
|
||||
"github.com/prometheus/client_golang",
|
||||
"github.com/prometheus/client_model",
|
||||
"bitbucket.org/ww/goautoneg",
|
||||
"github.com/golang/protobuf",
|
||||
"github.com/matttproud/golang_protobuf_extensions",
|
||||
"github.com/prometheus/procfs",
|
||||
"github.com/beorn7/perks"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/golang/protobuf",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/protobuf",
|
||||
"rev": "59b73b37c1e45995477aae817e4a653c89a858db",
|
||||
"sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_model",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_model",
|
||||
"rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6",
|
||||
"sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/beorn7/perks",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/beorn7/perks",
|
||||
"rev": "b965b613227fddccbfffe13eae360ed3fa822f8d",
|
||||
"sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/matttproud/golang_protobuf_extensions",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/matttproud/golang_protobuf_extensions",
|
||||
"rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a",
|
||||
"sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/procfs",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/procfs",
|
||||
"rev": "c91d8eefde16bd047416409eb56353ea84a186e4",
|
||||
"sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "bitbucket.org/ww/goautoneg",
|
||||
"fetch": {
|
||||
"type": "hg",
|
||||
"url": "bitbucket.org/ww/goautoneg",
|
||||
"rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675",
|
||||
"sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/julienschmidt/httprouter",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/julienschmidt/httprouter",
|
||||
"rev": "6aacfd5ab513e34f7e64ea9627ab9670371b34e7",
|
||||
"sha256": "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,15 +1,74 @@
|
||||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/howeyc/fsnotify",
|
||||
"github.com/prometheus/client_golang",
|
||||
"github.com/prometheus/client_model",
|
||||
"bitbucket.org/ww/goautoneg",
|
||||
"github.com/beorn7/perks",
|
||||
"github.com/golang/protobuf",
|
||||
"github.com/matttproud/golang_protobuf_extensions",
|
||||
"github.com/prometheus/procfs"
|
||||
]
|
||||
}
|
||||
{
|
||||
"goPackagePath": "github.com/golang/protobuf",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/golang/protobuf",
|
||||
"rev": "59b73b37c1e45995477aae817e4a653c89a858db",
|
||||
"sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_model",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_model",
|
||||
"rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6",
|
||||
"sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/beorn7/perks",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/beorn7/perks",
|
||||
"rev": "b965b613227fddccbfffe13eae360ed3fa822f8d",
|
||||
"sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/matttproud/golang_protobuf_extensions",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/matttproud/golang_protobuf_extensions",
|
||||
"rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a",
|
||||
"sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/client_golang",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/client_golang",
|
||||
"rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864",
|
||||
"sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/prometheus/procfs",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/prometheus/procfs",
|
||||
"rev": "c91d8eefde16bd047416409eb56353ea84a186e4",
|
||||
"sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "bitbucket.org/ww/goautoneg",
|
||||
"fetch": {
|
||||
"type": "hg",
|
||||
"url": "bitbucket.org/ww/goautoneg",
|
||||
"rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675",
|
||||
"sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/howeyc/fsnotify",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/fsnotify/fsnotify",
|
||||
"rev": "ea925a0a47d225b2ca7f9932b01d2ed4f3ec74f6",
|
||||
"sha256": "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user