lol

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`.

+2974 -2431
-21
doc/languages-frameworks/go.xml
··· 86 86 "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 87 87 "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 88 88 } 89 - }, 90 - { 91 - "include": "../../libs.json", <co xml:id='ex-goDeps-4' /> 92 - "packages": [ <co xml:id='ex-goDeps-5' /> 93 - "github.com/docopt/docopt-go", 94 - "golang.org/x/crypto", 95 - ] 96 89 } 97 90 ] 98 91 </programlisting> ··· 119 112 <varname>fetch type</varname> that needs to be used to get package source. If <varname>git</varname> 120 113 is used there should be <varname>url</varname>, <varname>rev</varname> and <varname>sha256</varname> 121 114 defined next to it. 122 - </para> 123 - </callout> 124 - 125 - <callout arearefs='ex-goDeps-4'> 126 - <para> 127 - <varname>include</varname> could be used to reuse <varname>goDeps</varname> between Go programs. 128 - There is a common libs set in <varname>&lt;nixpkgs/pkgs/development/go-modules/libs.json&gt;</varname> 129 - with pinned versions of many packages that you can reuse. 130 - </para> 131 - </callout> 132 - 133 - <callout arearefs='ex-goDeps-5'> 134 - <para> 135 - <varname>packages</varname> enumerates all Go packages that will be imported from included file. 136 115 </para> 137 116 </callout> 138 117
+315 -42
pkgs/applications/misc/hugo/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "gopkg.in/yaml.v2", 6 - "github.com/hashicorp/hcl", 7 - "github.com/pkg/sftp", 8 - "golang.org/x/sys", 9 - "github.com/hashicorp/go-multierror", 10 - "golang.org/x/crypto", 11 - "github.com/pkg/errors", 12 - "github.com/kr/fs", 13 - "github.com/kyokomi/emoji", 14 - "github.com/bep/inflect", 15 - "github.com/BurntSushi/toml", 16 - "github.com/PuerkitoBio/purell", 17 - "github.com/PuerkitoBio/urlesc", 18 - "github.com/dchest/cssmin", 19 - "github.com/eknkc/amber", 20 - "github.com/gorilla/websocket", 21 - "github.com/kardianos/osext", 22 - "github.com/miekg/mmark", 23 - "github.com/mitchellh/mapstructure", 24 - "github.com/russross/blackfriday", 25 - "github.com/shurcooL/sanitized_anchor_name", 26 - "github.com/spf13/afero", 27 - "github.com/spf13/cast", 28 - "github.com/spf13/jwalterweatherman", 29 - "github.com/spf13/cobra", 30 - "github.com/cpuguy83/go-md2man", 31 - "github.com/inconshreveable/mousetrap", 32 - "github.com/spf13/pflag", 33 - "github.com/spf13/fsync", 34 - "github.com/spf13/viper", 35 - "github.com/kr/pretty", 36 - "github.com/kr/text", 37 - "github.com/magiconair/properties", 38 - "golang.org/x/text", 39 - "github.com/yosssi/ace", 40 - "github.com/spf13/nitro", 41 - "github.com/fsnotify/fsnotify" 42 - ] 43 - } 2 + { 3 + "goPackagePath": "golang.org/x/sys", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/sys", 7 + "rev": "d9157a9621b69ad1d8d77a1933590c416593f24f", 8 + "sha256": "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "gopkg.in/yaml.v2", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://gopkg.in/yaml.v2", 16 + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 17 + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "golang.org/x/crypto", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://go.googlesource.com/crypto", 25 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 26 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/gorilla/websocket", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/gorilla/websocket", 34 + "rev": "a622679ebd7a3b813862379232f645f8e690e43f", 35 + "sha256": "1nc9jbcmgya1i6dmf6sbcqsnxi9hbjg6dz1z0k7zmc6xdwlq0y4q" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/inconshreveable/mousetrap", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/inconshreveable/mousetrap", 43 + "rev": "9dbb96d2c3a964935b0870b5abaea13c98b483aa", 44 + "sha256": "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/kardianos/osext", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/kardianos/osext", 52 + "rev": "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc", 53 + "sha256": "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/hashicorp/hcl", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/hashicorp/hcl", 61 + "rev": "54864211433d45cb780682431585b3e573b49e4a", 62 + "sha256": "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/hashicorp/go-multierror", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/hashicorp/go-multierror", 70 + "rev": "56912fb08d85084aa318edcf2bba735b97cf35c5", 71 + "sha256": "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/BurntSushi/toml", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/BurntSushi/toml", 79 + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", 80 + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "github.com/mitchellh/mapstructure", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://github.com/mitchellh/mapstructure", 88 + "rev": "281073eb9eb092240d33ef253c404f1cca550309", 89 + "sha256": "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "golang.org/x/text", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://go.googlesource.com/text", 97 + "rev": "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e", 98 + "sha256": "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14" 99 + } 100 + }, 101 + { 102 + "goPackagePath": "github.com/shurcooL/sanitized_anchor_name", 103 + "fetch": { 104 + "type": "git", 105 + "url": "https://github.com/shurcooL/sanitized_anchor_name", 106 + "rev": "10ef21a441db47d8b13ebcc5fd2310f636973c77", 107 + "sha256": "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01" 108 + } 109 + }, 110 + { 111 + "goPackagePath": "github.com/russross/blackfriday", 112 + "fetch": { 113 + "type": "git", 114 + "url": "https://github.com/russross/blackfriday", 115 + "rev": "d18b67ae0afd61dae240896eae1785f00709aa31", 116 + "sha256": "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf" 117 + } 118 + }, 119 + { 120 + "goPackagePath": "github.com/yosssi/ace", 121 + "fetch": { 122 + "type": "git", 123 + "url": "https://github.com/yosssi/ace", 124 + "rev": "71afeb714739f9d5f7e1849bcd4a0a5938e1a70d", 125 + "sha256": "15k7ji8m3nqbwhnsvp82j4qa45sgvwv2giliw2xkdwi2g7mfrn8k" 126 + } 127 + }, 128 + { 129 + "goPackagePath": "github.com/spf13/viper", 130 + "fetch": { 131 + "type": "git", 132 + "url": "https://github.com/spf13/viper", 133 + "rev": "c1ccc378a054ea8d4e38d8c67f6938d4760b53dd", 134 + "sha256": "0lpdzalqhqp9pwsg63inkxwjji7m0pp42ryw1499bqbjp97hriq0" 135 + } 136 + }, 137 + { 138 + "goPackagePath": "github.com/spf13/pflag", 139 + "fetch": { 140 + "type": "git", 141 + "url": "https://github.com/spf13/pflag", 142 + "rev": "367864438f1b1a3c7db4da06a2f55b144e6784e0", 143 + "sha256": "03c6654hv4v1fj79i5sri3p9q2afqgicka4nicb6fr4kcfkkgbfp" 144 + } 145 + }, 146 + { 147 + "goPackagePath": "github.com/spf13/jwalterweatherman", 148 + "fetch": { 149 + "type": "git", 150 + "url": "https://github.com/spf13/jwalterweatherman", 151 + "rev": "33c24e77fb80341fe7130ee7c594256ff08ccc46", 152 + "sha256": "1knvzspqzc2bh58q16zggzc8gcabjp5gr7zk4k7nx5ij4092cg0z" 153 + } 154 + }, 155 + { 156 + "goPackagePath": "github.com/fsnotify/fsnotify", 157 + "fetch": { 158 + "type": "git", 159 + "url": "https://github.com/fsnotify/fsnotify", 160 + "rev": "30411dbcefb7a1da7e84f75530ad3abe4011b4f8", 161 + "sha256": "0kbpvyi6p9942k0vmcw5z13mja47f7hq7nqd332pn2zydss6kddm" 162 + } 163 + }, 164 + { 165 + "goPackagePath": "github.com/magiconair/properties", 166 + "fetch": { 167 + "type": "git", 168 + "url": "https://github.com/magiconair/properties", 169 + "rev": "c265cfa48dda6474e208715ca93e987829f572f8", 170 + "sha256": "1ab9ywwsrdq5mvrcwl7m3276y1q4dfwinbv88vgpqwcqai9wkpp3" 171 + } 172 + }, 173 + { 174 + "goPackagePath": "github.com/bep/inflect", 175 + "fetch": { 176 + "type": "git", 177 + "url": "https://github.com/bep/inflect", 178 + "rev": "b896c45f5af983b1f416bdf3bb89c4f1f0926f69", 179 + "sha256": "0drv6in94n7lmap4ajvgqlvdcbpn8alinfdzywzpihvzbx21b3h3" 180 + } 181 + }, 182 + { 183 + "goPackagePath": "github.com/eknkc/amber", 184 + "fetch": { 185 + "type": "git", 186 + "url": "https://github.com/eknkc/amber", 187 + "rev": "91774f050c1453128146169b626489e60108ec03", 188 + "sha256": "1rb8bm35h8a77q4py6r3818cpwh7kpq1kh2ib2rb4i5s7z75ciis" 189 + } 190 + }, 191 + { 192 + "goPackagePath": "github.com/spf13/afero", 193 + "fetch": { 194 + "type": "git", 195 + "url": "https://github.com/spf13/afero", 196 + "rev": "1a8ecf8b9da1fb5306e149e83128fc447957d2a8", 197 + "sha256": "1nrg0gmqnl4h6zjmi4mdhrwnl3l34nzxpq2hsr3nizfvrx5gqbzw" 198 + } 199 + }, 200 + { 201 + "goPackagePath": "github.com/spf13/cast", 202 + "fetch": { 203 + "type": "git", 204 + "url": "https://github.com/spf13/cast", 205 + "rev": "27b586b42e29bec072fe7379259cc719e1289da6", 206 + "sha256": "1y73pfxdvm1bfpghwsfxj8gl4miv6fpzi9azxcknp6rcjn1gmq0x" 207 + } 208 + }, 209 + { 210 + "goPackagePath": "github.com/spf13/cobra", 211 + "fetch": { 212 + "type": "git", 213 + "url": "https://github.com/spf13/cobra", 214 + "rev": "bc81c21bd0d8be5ba2d6630a505d79d4467566e7", 215 + "sha256": "1sp8gl25cjx0yibh6q1i8d5rbxpwaal3z8vz372wfmbz002say8r" 216 + } 217 + }, 218 + { 219 + "goPackagePath": "github.com/dchest/cssmin", 220 + "fetch": { 221 + "type": "git", 222 + "url": "https://github.com/dchest/cssmin", 223 + "rev": "fb8d9b44afdc258bfff6052d3667521babcb2239", 224 + "sha256": "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s" 225 + } 226 + }, 227 + { 228 + "goPackagePath": "github.com/spf13/fsync", 229 + "fetch": { 230 + "type": "git", 231 + "url": "https://github.com/spf13/fsync", 232 + "rev": "eefee59ad7de621617d4ff085cf768aab4b919b1", 233 + "sha256": "0d56xdczawikyczc12i661qc79dbv4q8ihlj4p20zsjkyxxym59p" 234 + } 235 + }, 236 + { 237 + "goPackagePath": "github.com/cpuguy83/go-md2man", 238 + "fetch": { 239 + "type": "git", 240 + "url": "https://github.com/cpuguy83/go-md2man", 241 + "rev": "2724a9c9051aa62e9cca11304e7dd518e9e41599", 242 + "sha256": "1j2bigs7ixy20cdqd246nxr417md2qcyvkfk3x94992cr88d0vyj" 243 + } 244 + }, 245 + { 246 + "goPackagePath": "github.com/miekg/mmark", 247 + "fetch": { 248 + "type": "git", 249 + "url": "https://github.com/miekg/mmark", 250 + "rev": "adb5c3e2e9f3e7da9bd25291edda8e66c0045a2a", 251 + "sha256": "0fycz17fj37fh95lfshdrfwrgkzi3hl1kgnily0cxc9zwfbap3qa" 252 + } 253 + }, 254 + { 255 + "goPackagePath": "github.com/spf13/nitro", 256 + "fetch": { 257 + "type": "git", 258 + "url": "https://github.com/spf13/nitro", 259 + "rev": "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8", 260 + "sha256": "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib" 261 + } 262 + }, 263 + { 264 + "goPackagePath": "github.com/PuerkitoBio/purell", 265 + "fetch": { 266 + "type": "git", 267 + "url": "https://github.com/PuerkitoBio/purell", 268 + "rev": "1d5d1cfad45d42ec5f81fa8ef23de09cebc6dcc3", 269 + "sha256": "12k82576ka21c6572yy2v81kxpjrgf9mffjlz469g3vs0g3nkwlb" 270 + } 271 + }, 272 + { 273 + "goPackagePath": "github.com/pkg/sftp", 274 + "fetch": { 275 + "type": "git", 276 + "url": "https://github.com/pkg/sftp", 277 + "rev": "d4c18e7ffdc496a38de67dde6e29b2f364afc472", 278 + "sha256": "0cnl83k317gxskayfj3xwr4bl0vcbjvlwi3q0vjwvircynb6xscj" 279 + } 280 + }, 281 + { 282 + "goPackagePath": "github.com/kr/fs", 283 + "fetch": { 284 + "type": "git", 285 + "url": "https://github.com/kr/fs", 286 + "rev": "2788f0dbd16903de03cb8186e5c7d97b69ad387b", 287 + "sha256": "1c0fipl4rsh0v5liq1ska1dl83v3llab4k6lm8mvrx9c4dyp71ly" 288 + } 289 + }, 290 + { 291 + "goPackagePath": "github.com/kyokomi/emoji", 292 + "fetch": { 293 + "type": "git", 294 + "url": "https://github.com/kyokomi/emoji", 295 + "rev": "17c5e7085c9d59630aa578df67f4469481fbe7a9", 296 + "sha256": "0qs4mi7z1lghiyiw7s2bz5y959wj9ifmhyqh39xwqk69d690jwlp" 297 + } 298 + }, 299 + { 300 + "goPackagePath": "github.com/pkg/errors", 301 + "fetch": { 302 + "type": "git", 303 + "url": "https://github.com/pkg/errors", 304 + "rev": "494e70f7620561491c2ca11e185bbef4b70060da", 305 + "sha256": "0a0961ixl67vryhnzyzhai357c9n9a7v3vpkpqrh32spn033gjd9" 306 + } 307 + }, 308 + { 309 + "goPackagePath": "github.com/PuerkitoBio/urlesc", 310 + "fetch": { 311 + "type": "git", 312 + "url": "https://github.com/PuerkitoBio/urlesc", 313 + "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587", 314 + "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni" 315 + } 316 + } 44 317 ]
+9 -6
pkgs/applications/misc/mop/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/nsf/termbox-go" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "github.com/nsf/termbox-go", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/nsf/termbox-go", 7 + "rev": "9aecf65084a5754f12d27508fa2e6ed56851953b", 8 + "sha256": "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh" 9 + } 10 + } 8 11 ]
+27 -8
pkgs/applications/misc/wego/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/mattn/go-colorable", 6 - "github.com/mattn/go-runewidth", 7 - "github.com/schachmat/ingo" 8 - ] 9 - } 2 + { 3 + "goPackagePath": "github.com/mattn/go-runewidth", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/mattn/go-runewidth", 7 + "rev": "d6bea18f789704b5f83375793155289da36a3c7f", 8 + "sha256": "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/mattn/go-colorable", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/mattn/go-colorable", 16 + "rev": "3dac7b4f76f6e17fb39b768b89e3783d16e237fe", 17 + "sha256": "08680mba8hh2rghymqbzd4m40r9k765w5kbzvrif9ngd6h85qnw6" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/schachmat/ingo", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/schachmat/ingo", 25 + "rev": "fab41e4e62cbef5d92998746ec25f7e195100f38", 26 + "sha256": "04yfnch7pdabjjqfl2qxjmsaknvp4m1rbjlv8qrpmnqwjkxzx0hb" 27 + } 28 + } 10 29 ]
+162 -24
pkgs/applications/networking/drive/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/boltdb/bolt", 6 - "github.com/cheggaaa/pb", 7 - "github.com/odeke-em/cli-spinner", 8 - "github.com/odeke-em/statos", 9 - "golang.org/x/oauth2", 10 - "github.com/odeke-em/exponential-backoff", 11 - "github.com/odeke-em/extractor", 12 - "github.com/odeke-em/meddler", 13 - "github.com/odeke-em/xon", 14 - "github.com/odeke-em/cache", 15 - "github.com/odeke-em/drive", 16 - "github.com/odeke-em/command", 17 - "github.com/odeke-em/log", 18 - "github.com/odeke-em/pretty-words", 19 - "github.com/skratchdot/open-golang", 20 - "google.golang.org/cloud", 21 - "google.golang.org/api", 22 - "github.com/mattn/go-isatty", 23 - "golang.org/x/net" 24 - ] 25 - } 2 + { 3 + "goPackagePath": "golang.org/x/net", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/net", 7 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 8 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "google.golang.org/api", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://code.googlesource.com/google-api-go-client", 16 + "rev": "a5c3e2a4792aff40e59840d9ecdff0542a202a80", 17 + "sha256": "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "google.golang.org/cloud", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://code.googlesource.com/gocloud", 25 + "rev": "6335269abf9002cf5a84613c13cda6010842b834", 26 + "sha256": "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "golang.org/x/oauth2", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://go.googlesource.com/oauth2", 34 + "rev": "397fe7649477ff2e8ced8fc0b2696f781e53745a", 35 + "sha256": "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/mattn/go-isatty", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/mattn/go-isatty", 43 + "rev": "ae0b1f8f8004be68d791a576e3d8e7648ab41449", 44 + "sha256": "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/boltdb/bolt", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/boltdb/bolt", 52 + "rev": "957d850b5158a4eebf915476058e720f43459584", 53 + "sha256": "193adhhsqdy0kyq1l1fi8pg2n6pwyrw4h607qm78qyi26f8i7vzf" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/cheggaaa/pb", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/cheggaaa/pb", 61 + "rev": "e648e12b78cedf14ebb2fc1855033f07b034cfbb", 62 + "sha256": "03k4cars7hcqqgdsd0minfls2p7gjpm8q6y8vknh1s68kvxd4xam" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/odeke-em/cli-spinner", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/odeke-em/cli-spinner", 70 + "rev": "610063bb4aeef25f7645b3e6080456655ec0fb33", 71 + "sha256": "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/odeke-em/statos", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/odeke-em/statos", 79 + "rev": "f27d6ab69b62abd9d9fe80d355e23a3e45d347d6", 80 + "sha256": "17cpks8bi9i7p8j38x0wy60jb9g39wbzszcmhx4hlq6yzxr04jvs" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "github.com/odeke-em/exponential-backoff", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://github.com/odeke-em/exponential-backoff", 88 + "rev": "96e25d36ae36ad09ac02cbfe653b44c4043a8e09", 89 + "sha256": "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/odeke-em/extractor", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/odeke-em/extractor", 97 + "rev": "801861aedb854c7ac5e1329e9713023e9dc2b4d4", 98 + "sha256": "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1" 99 + } 100 + }, 101 + { 102 + "goPackagePath": "github.com/odeke-em/meddler", 103 + "fetch": { 104 + "type": "git", 105 + "url": "https://github.com/odeke-em/meddler", 106 + "rev": "d2b51d2b40e786ab5f810d85e65b96404cf33570", 107 + "sha256": "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x" 108 + } 109 + }, 110 + { 111 + "goPackagePath": "github.com/odeke-em/xon", 112 + "fetch": { 113 + "type": "git", 114 + "url": "https://github.com/odeke-em/xon", 115 + "rev": "d580be739d723da4f6378083128f93017b8ab295", 116 + "sha256": "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc" 117 + } 118 + }, 119 + { 120 + "goPackagePath": "github.com/odeke-em/cache", 121 + "fetch": { 122 + "type": "git", 123 + "url": "https://github.com/odeke-em/cache", 124 + "rev": "b51b08cb6cf889deda6c941a5205baecfd16f3eb", 125 + "sha256": "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4" 126 + } 127 + }, 128 + { 129 + "goPackagePath": "github.com/odeke-em/command", 130 + "fetch": { 131 + "type": "git", 132 + "url": "https://github.com/odeke-em/command", 133 + "rev": "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561", 134 + "sha256": "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62" 135 + } 136 + }, 137 + { 138 + "goPackagePath": "github.com/odeke-em/log", 139 + "fetch": { 140 + "type": "git", 141 + "url": "https://github.com/odeke-em/log", 142 + "rev": "cad53c4565a0b0304577bd13f3862350bdc5f907", 143 + "sha256": "059c933qjikxlvaywzpzljqnab19svymbv6x32pc7khw156fh48w" 144 + } 145 + }, 146 + { 147 + "goPackagePath": "github.com/odeke-em/pretty-words", 148 + "fetch": { 149 + "type": "git", 150 + "url": "https://github.com/odeke-em/pretty-words", 151 + "rev": "9d37a7fcb4ae6f94b288d371938482994458cecb", 152 + "sha256": "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl" 153 + } 154 + }, 155 + { 156 + "goPackagePath": "github.com/skratchdot/open-golang", 157 + "fetch": { 158 + "type": "git", 159 + "url": "https://github.com/skratchdot/open-golang", 160 + "rev": "c8748311a7528d0ba7330d302adbc5a677ef9c9e", 161 + "sha256": "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac" 162 + } 163 + } 26 164 ]
+45 -10
pkgs/applications/networking/instant-messengers/pond/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "golang.org/x/net", 6 - "github.com/golang/protobuf", 7 - "github.com/agl/ed25519", 8 - "golang.org/x/crypto", 9 - "github.com/agl/go-gtk" 10 - ] 11 - } 2 + { 3 + "goPackagePath": "golang.org/x/crypto", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/crypto", 7 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 8 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/agl/ed25519", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/agl/ed25519", 16 + "rev": "278e1ec8e8a6e017cd07577924d6766039146ced", 17 + "sha256": "165d89cc6dl28j4hkn86pny0jz3sa6hamzdvpvwdj4iha3x6lzc9" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/golang/protobuf", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/golang/protobuf", 25 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 26 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "golang.org/x/net", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://go.googlesource.com/net", 34 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 35 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/agl/go-gtk", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/agl/go-gtk", 43 + "rev": "91c1edb38c241d73129e6b098ca1c9fa83abfc15", 44 + "sha256": "156ixlhakpqgyp35rsvmndrqz8aggv5bcmzg9ynpri3b9j6kim4d" 45 + } 46 + } 12 47 ]
+18 -7
pkgs/applications/networking/instant-messengers/xmpp-client/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "golang.org/x/crypto", 6 - "golang.org/x/net" 7 - ] 8 - } 2 + { 3 + "goPackagePath": "golang.org/x/net", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/net", 7 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 8 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "golang.org/x/crypto", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://go.googlesource.com/crypto", 16 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 17 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 18 + } 19 + } 9 20 ]
+126 -19
pkgs/applications/networking/syncthing012/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/bkaradzic/go-lz4", 6 - "github.com/calmh/luhn", 7 - "golang.org/x/text", 8 - "github.com/kardianos/osext", 9 - "github.com/vitrun/qart", 10 - "github.com/calmh/du", 11 - "github.com/calmh/xdr", 12 - "github.com/juju/ratelimit", 13 - "github.com/thejerf/suture", 14 - "github.com/golang/snappy", 15 - "github.com/rcrowley/go-metrics", 16 - "github.com/syndtr/goleveldb", 17 - "golang.org/x/crypto", 18 - "golang.org/x/net" 19 - ] 20 - } 2 + { 3 + "goPackagePath": "golang.org/x/crypto", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/crypto", 7 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 8 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "golang.org/x/net", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://go.googlesource.com/net", 16 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 17 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/rcrowley/go-metrics", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/rcrowley/go-metrics", 25 + "rev": "1ce93efbc8f9c568886b2ef85ce305b2217b3de3", 26 + "sha256": "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/kardianos/osext", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/kardianos/osext", 34 + "rev": "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc", 35 + "sha256": "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/bkaradzic/go-lz4", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/bkaradzic/go-lz4", 43 + "rev": "74ddf82598bc4745b965729e9c6a463bedd33049", 44 + "sha256": "1vdid8v0c2v2qhrg9rzn3l7ya1h34jirrxfnir7gv7w6s4ivdvc1" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/calmh/luhn", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/calmh/luhn", 52 + "rev": "0c8388ff95fa92d4094011e5a04fc99dea3d1632", 53 + "sha256": "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "golang.org/x/text", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://go.googlesource.com/text", 61 + "rev": "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e", 62 + "sha256": "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/vitrun/qart", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/vitrun/qart", 70 + "rev": "ccb109cf25f0cd24474da73b9fee4e7a3e8a8ce0", 71 + "sha256": "0bhp768b8ha6f25dmhwn9q8m2lkbn4qnjf8n7pizk25jn5zjdvc8" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/calmh/du", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/calmh/du", 79 + "rev": "3c0690cca16228b97741327b1b6781397afbdb24", 80 + "sha256": "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "github.com/calmh/xdr", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://github.com/calmh/xdr", 88 + "rev": "e467b5aeb65ca8516fb3925c84991bf1d7cc935e", 89 + "sha256": "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/juju/ratelimit", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/juju/ratelimit", 97 + "rev": "772f5c38e468398c4511514f4f6aa9a4185bc0a0", 98 + "sha256": "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p" 99 + } 100 + }, 101 + { 102 + "goPackagePath": "github.com/thejerf/suture", 103 + "fetch": { 104 + "type": "git", 105 + "url": "https://github.com/thejerf/suture", 106 + "rev": "99c1f2d613756768fc4299acd9dc621e11ed3fd7", 107 + "sha256": "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4" 108 + } 109 + }, 110 + { 111 + "goPackagePath": "github.com/golang/snappy", 112 + "fetch": { 113 + "type": "git", 114 + "url": "https://github.com/golang/snappy", 115 + "rev": "723cc1e459b8eea2dea4583200fd60757d40097a", 116 + "sha256": "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h" 117 + } 118 + }, 119 + { 120 + "goPackagePath": "github.com/syndtr/goleveldb", 121 + "fetch": { 122 + "type": "git", 123 + "url": "https://github.com/syndtr/goleveldb", 124 + "rev": "1a9d62f03ea92815b46fcaab357cfd4df264b1a0", 125 + "sha256": "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb" 126 + } 127 + } 21 128 ]
+18 -7
pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/pquerna/ffjson", 6 - "gopkg.in/kothar/go-backblaze.v0" 7 - ] 8 - } 2 + { 3 + "goPackagePath": "github.com/pquerna/ffjson", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/pquerna/ffjson", 7 + "rev": "674bc015b5b3f50f9bb2561179778586b9af68c5", 8 + "sha256": "0l53q7b1g25hfjm1iyynfs413rpav4c51yvdr244ivw1x3hksa7a" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "gopkg.in/kothar/go-backblaze.v0", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://gopkg.in/kothar/go-backblaze.v0", 16 + "rev": "373819725fc560fa962c6cd883b533d2ebec4844", 17 + "sha256": "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx" 18 + } 19 + } 9 20 ]
+2 -7
pkgs/development/go-modules/generic/default.nix
··· 55 55 else abort "Unrecognized package fetch type"; 56 56 }; 57 57 58 - importGodeps = { depsFile, filterPackages ? [] }: 59 - let 60 - deps = lib.importJSON depsFile; 61 - external = filter (d: d ? include) deps; 62 - direct = filter (d: d ? goPackagePath && (length filterPackages == 0 || elem d.goPackagePath filterPackages)) deps; 63 - in 64 - concatLists (map importGodeps (map (d: { depsFile = ./. + d.include; filterPackages = d.packages; }) external)) ++ (map dep2src direct); 58 + importGodeps = { depsFile }: 59 + map dep2src (lib.importJSON depsFile); 65 60 66 61 goPath = if goDeps != null then importGodeps { depsFile = goDeps; } ++ extraSrcs 67 62 else extraSrcs;
-1820
pkgs/development/go-modules/libs.json
··· 1 - [ 2 - { 3 - "goPackagePath": "github.com/elves/getopt", 4 - "fetch": { 5 - "type": "git", 6 - "url": "https://github.com/elves/getopt", 7 - "rev": "f91a7bf920995832d55a1182f26657bc975b9c24", 8 - "sha256": "0wz5dz0iq1b1c2w30mmcgll9xidsrnlvs2906jw9szy0h67310za" 9 - } 10 - }, 11 - { 12 - "goPackagePath": "golang.org/x/sys", 13 - "fetch": { 14 - "type": "git", 15 - "url": "https://go.googlesource.com/sys", 16 - "rev": "d9157a9621b69ad1d8d77a1933590c416593f24f", 17 - "sha256": "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931" 18 - } 19 - }, 20 - { 21 - "goPackagePath": "gopkg.in/fsnotify.v1", 22 - "fetch": { 23 - "type": "git", 24 - "url": "https://gopkg.in/fsnotify.v1", 25 - "rev": "96c060f6a6b7e0d6f75fddd10efeaca3e5d1bcb0", 26 - "sha256": "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2" 27 - } 28 - }, 29 - { 30 - "goPackagePath": "gopkg.in/yaml.v2", 31 - "fetch": { 32 - "type": "git", 33 - "url": "https://gopkg.in/yaml.v2", 34 - "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 35 - "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 36 - } 37 - }, 38 - { 39 - "goPackagePath": "github.com/docopt/docopt-go", 40 - "fetch": { 41 - "type": "git", 42 - "url": "https://github.com/docopt/docopt-go", 43 - "rev": "784ddc588536785e7299f7272f39101f7faccc3f", 44 - "sha256": "0wwz48jl9fvl1iknvn9dqr4gfy1qs03gxaikrxxp9gry6773v3sj" 45 - } 46 - }, 47 - { 48 - "goPackagePath": "golang.org/x/crypto", 49 - "fetch": { 50 - "type": "git", 51 - "url": "https://go.googlesource.com/crypto", 52 - "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 53 - "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 54 - } 55 - }, 56 - { 57 - "goPackagePath": "github.com/Sirupsen/logrus", 58 - "fetch": { 59 - "type": "git", 60 - "url": "https://github.com/Sirupsen/logrus", 61 - "rev": "be52937128b38f1d99787bb476c789e2af1147f1", 62 - "sha256": "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4" 63 - } 64 - }, 65 - { 66 - "goPackagePath": "github.com/agl/ed25519", 67 - "fetch": { 68 - "type": "git", 69 - "url": "https://github.com/agl/ed25519", 70 - "rev": "278e1ec8e8a6e017cd07577924d6766039146ced", 71 - "sha256": "165d89cc6dl28j4hkn86pny0jz3sa6hamzdvpvwdj4iha3x6lzc9" 72 - } 73 - }, 74 - { 75 - "goPackagePath": "github.com/golang/protobuf", 76 - "fetch": { 77 - "type": "git", 78 - "url": "https://github.com/golang/protobuf", 79 - "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 80 - "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 81 - } 82 - }, 83 - { 84 - "goPackagePath": "github.com/janimo/textsecure", 85 - "fetch": { 86 - "type": "git", 87 - "url": "https://github.com/janimo/textsecure", 88 - "rev": "c38f429e48d6b2776d17b4171f216f132185b0f6", 89 - "sha256": "191pwgfgphr0x04dwpvniax4wilpv52l25bw7d3igvnw302y7i94" 90 - } 91 - }, 92 - { 93 - "goPackagePath": "golang.org/x/net", 94 - "fetch": { 95 - "type": "git", 96 - "url": "https://go.googlesource.com/net", 97 - "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 98 - "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 99 - } 100 - }, 101 - { 102 - "goPackagePath": "github.com/howeyc/gopass", 103 - "fetch": { 104 - "type": "git", 105 - "url": "https://github.com/howeyc/gopass", 106 - "rev": "2c70fa70727c953c51695f800f25d6b44abb368e", 107 - "sha256": "152lrkfxk205rlxiign0w5wb0fmfh910yz4jhlv4f4l1qr1h2lx8" 108 - } 109 - }, 110 - { 111 - "goPackagePath": "gopkg.in/mgo.v2", 112 - "fetch": { 113 - "type": "git", 114 - "url": "https://gopkg.in/mgo.v2", 115 - "rev": "c6a7dce14133ccac2dcac3793f1d6e2ef048503a", 116 - "sha256": "0rg232q1bkq3y3kd5816hgk1jpf7i38aha5q5ia7j6p9xashz7vj" 117 - } 118 - }, 119 - { 120 - "goPackagePath": "gopkg.in/tomb.v2", 121 - "fetch": { 122 - "type": "git", 123 - "url": "https://gopkg.in/tomb.v2", 124 - "rev": "14b3d72120e8d10ea6e6b7f87f7175734b1faab8", 125 - "sha256": "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5" 126 - } 127 - }, 128 - { 129 - "goPackagePath": "github.com/hanwen/go-fuse", 130 - "fetch": { 131 - "type": "git", 132 - "url": "https://github.com/hanwen/go-fuse", 133 - "rev": "bd746dd8bcc8c059a9d953a786a6156eb83f398e", 134 - "sha256": "1dvvclp418j3d02v9717sfqhl6fw6yyddr9r3j8gsiv8nb62ib56" 135 - } 136 - }, 137 - { 138 - "goPackagePath": "github.com/cpucycle/astrotime", 139 - "fetch": { 140 - "type": "git", 141 - "url": "https://github.com/cpucycle/astrotime", 142 - "rev": "9c7d514efdb561775030eaf8f1a9ae6bddb3a2ca", 143 - "sha256": "024sc7g55v4s54irssm5wsn74sr2k2ynsm6z16w47q66cxhgvby1" 144 - } 145 - }, 146 - { 147 - "goPackagePath": "github.com/godbus/dbus", 148 - "fetch": { 149 - "type": "git", 150 - "url": "https://github.com/godbus/dbus", 151 - "rev": "32c6cc29c14570de4cf6d7e7737d68fb2d01ad15", 152 - "sha256": "0v401f761l88yapiaw23pxvxviqrwl2r2vfd6lq02044i7x4i5r3" 153 - } 154 - }, 155 - { 156 - "goPackagePath": "github.com/gorilla/websocket", 157 - "fetch": { 158 - "type": "git", 159 - "url": "https://github.com/gorilla/websocket", 160 - "rev": "a622679ebd7a3b813862379232f645f8e690e43f", 161 - "sha256": "1nc9jbcmgya1i6dmf6sbcqsnxi9hbjg6dz1z0k7zmc6xdwlq0y4q" 162 - } 163 - }, 164 - { 165 - "goPackagePath": "github.com/syndtr/gocapability", 166 - "fetch": { 167 - "type": "git", 168 - "url": "https://github.com/syndtr/gocapability", 169 - "rev": "2c00daeb6c3b45114c80ac44119e7b8801fdd852", 170 - "sha256": "1x7jdcg2r5pakjf20q7bdiidfmv7vcjiyg682186rkp2wz0yws0l" 171 - } 172 - }, 173 - { 174 - "goPackagePath": "gopkg.in/inconshreveable/log15.v2", 175 - "fetch": { 176 - "type": "git", 177 - "url": "https://gopkg.in/inconshreveable/log15.v2", 178 - "rev": "b105bd37f74e5d9dc7b6ad7806715c7a2b83fd3f", 179 - "sha256": "18rldvi60i7b3lljfrsqgcc24gdkw2pcixxydznyggaqhh96l6a8" 180 - } 181 - }, 182 - { 183 - "goPackagePath": "github.com/gorilla/mux", 184 - "fetch": { 185 - "type": "git", 186 - "url": "https://github.com/gorilla/mux", 187 - "rev": "8096f47503459bcc74d1f4c487b7e6e42e5746b5", 188 - "sha256": "0163fm9jsh54df471mx9kfhdg0070klqhw9ja0qwdzqibxq791b9" 189 - } 190 - }, 191 - { 192 - "goPackagePath": "github.com/pborman/uuid", 193 - "fetch": { 194 - "type": "git", 195 - "url": "https://github.com/pborman/uuid", 196 - "rev": "ca53cad383cad2479bbba7f7a1a05797ec1386e4", 197 - "sha256": "0rcx669bbjkkwdlw81spnra4ffgzd4rbpywnrj3w41m9vq6mk1gn" 198 - } 199 - }, 200 - { 201 - "goPackagePath": "gopkg.in/flosch/pongo2.v3", 202 - "fetch": { 203 - "type": "git", 204 - "url": "https://gopkg.in/flosch/pongo2.v3", 205 - "rev": "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9", 206 - "sha256": "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8" 207 - } 208 - }, 209 - { 210 - "goPackagePath": "github.com/olekukonko/tablewriter", 211 - "fetch": { 212 - "type": "git", 213 - "url": "https://github.com/olekukonko/tablewriter", 214 - "rev": "cca8bbc0798408af109aaaa239cbd2634846b340", 215 - "sha256": "0f9ph3z7lh6p6gihbl1461j9yq5qiaqxr9mzdkp512n18v89ml48" 216 - } 217 - }, 218 - { 219 - "goPackagePath": "github.com/mattn/go-sqlite3", 220 - "fetch": { 221 - "type": "git", 222 - "url": "https://github.com/mattn/go-sqlite3", 223 - "rev": "b4142c444a8941d0d92b0b7103a24df9cd815e42", 224 - "sha256": "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla" 225 - } 226 - }, 227 - { 228 - "goPackagePath": "gopkg.in/lxc/go-lxc.v2", 229 - "fetch": { 230 - "type": "git", 231 - "url": "https://gopkg.in/lxc/go-lxc.v2", 232 - "rev": "8f9e220b36393c03854c2d224c5a55644b13e205", 233 - "sha256": "1dc1n2561k3pxbm2zzh3qwlh30bcb2k9v22ghvr7ps2j9lmhs0ip" 234 - } 235 - }, 236 - { 237 - "goPackagePath": "github.com/mattn/go-runewidth", 238 - "fetch": { 239 - "type": "git", 240 - "url": "https://github.com/mattn/go-runewidth", 241 - "rev": "d6bea18f789704b5f83375793155289da36a3c7f", 242 - "sha256": "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs" 243 - } 244 - }, 245 - { 246 - "goPackagePath": "github.com/coreos/go-systemd", 247 - "fetch": { 248 - "type": "git", 249 - "url": "https://github.com/coreos/go-systemd", 250 - "rev": "a606a1e936df81b70d85448221c7b1c6d8a74ef1", 251 - "sha256": "0fhan564swp982dnzzspb6jzfdl453489c0qavh65g3shy5x8x28" 252 - } 253 - }, 254 - { 255 - "goPackagePath": "github.com/dustinkirkland/golang-petname", 256 - "fetch": { 257 - "type": "git", 258 - "url": "https://github.com/dustinkirkland/golang-petname", 259 - "rev": "2182cecef7f257230fc998bc351a08a5505f5e6c", 260 - "sha256": "1xagj34y5rxl7rykhil8iqxlls9rbgcxgdvgfp7kg39pinw83arl" 261 - } 262 - }, 263 - { 264 - "goPackagePath": "github.com/gorilla/context", 265 - "fetch": { 266 - "type": "git", 267 - "url": "https://github.com/gorilla/context", 268 - "rev": "215affda49addc4c8ef7e2534915df2c8c35c6cd", 269 - "sha256": "1ybvjknncyx1f112mv28870n0l7yrymsr0861vzw10gc4yn1h97g" 270 - } 271 - }, 272 - { 273 - "goPackagePath": "github.com/mattn/go-colorable", 274 - "fetch": { 275 - "type": "git", 276 - "url": "https://github.com/mattn/go-colorable", 277 - "rev": "3dac7b4f76f6e17fb39b768b89e3783d16e237fe", 278 - "sha256": "08680mba8hh2rghymqbzd4m40r9k765w5kbzvrif9ngd6h85qnw6" 279 - } 280 - }, 281 - { 282 - "goPackagePath": "github.com/gosexy/gettext", 283 - "fetch": { 284 - "type": "git", 285 - "url": "https://github.com/gosexy/gettext", 286 - "rev": "305f360aee30243660f32600b87c3c1eaa947187", 287 - "sha256": "0sm7ziv56ms0lrk30ipbl6i17azar3a44dd2xvr011442zs5ym09" 288 - } 289 - }, 290 - { 291 - "goPackagePath": "github.com/rcrowley/go-metrics", 292 - "fetch": { 293 - "type": "git", 294 - "url": "https://github.com/rcrowley/go-metrics", 295 - "rev": "1ce93efbc8f9c568886b2ef85ce305b2217b3de3", 296 - "sha256": "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa" 297 - } 298 - }, 299 - { 300 - "goPackagePath": "github.com/inconshreveable/go-vhost", 301 - "fetch": { 302 - "type": "git", 303 - "url": "https://github.com/inconshreveable/go-vhost", 304 - "rev": "c4c28117502e4bf00960c8282b2d1c51c865fe2c", 305 - "sha256": "1rway6sls6fl2s2jk20ajj36rrlzh9944ncc9pdd19kifix54z32" 306 - } 307 - }, 308 - { 309 - "goPackagePath": "code.google.com/p/log4go", 310 - "fetch": { 311 - "type": "git", 312 - "url": "https://github.com/ccpaging/log4go", 313 - "rev": "cb4cc51cd03958183d3b637d0750497d88c2f7a8", 314 - "sha256": "0l9f86zzhla9hq35q4xhgs837283qrm4gxbp5lrwwls54ifiq7k2" 315 - } 316 - }, 317 - { 318 - "goPackagePath": "github.com/daviddengcn/go-colortext", 319 - "fetch": { 320 - "type": "git", 321 - "url": "https://github.com/daviddengcn/go-colortext", 322 - "rev": "13eaeb896f5985a1ab74ddea58707a73d875ba57", 323 - "sha256": "0618xs9lc5xfp5zkkb5j47dr7i30ps3zj5fj0zpv8afqh2cc689x" 324 - } 325 - }, 326 - { 327 - "goPackagePath": "gopkg.in/yaml.v1", 328 - "fetch": { 329 - "type": "git", 330 - "url": "https://github.com/go-yaml/yaml", 331 - "rev": "b0c168ac0cf9493da1f9bb76c34b26ffef940b4a", 332 - "sha256": "0jbdy41pplf2d1j24qwr8gc5qsig6ai5ch8rwgvg72kq9q0901cy" 333 - } 334 - }, 335 - { 336 - "goPackagePath": "github.com/inconshreveable/mousetrap", 337 - "fetch": { 338 - "type": "git", 339 - "url": "https://github.com/inconshreveable/mousetrap", 340 - "rev": "9dbb96d2c3a964935b0870b5abaea13c98b483aa", 341 - "sha256": "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b" 342 - } 343 - }, 344 - { 345 - "goPackagePath": "github.com/nsf/termbox-go", 346 - "fetch": { 347 - "type": "git", 348 - "url": "https://github.com/nsf/termbox-go", 349 - "rev": "9aecf65084a5754f12d27508fa2e6ed56851953b", 350 - "sha256": "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh" 351 - } 352 - }, 353 - { 354 - "goPackagePath": "gopkg.in/inconshreveable/go-update.v0", 355 - "fetch": { 356 - "type": "git", 357 - "url": "https://github.com/inconshreveable/go-update", 358 - "rev": "d8b0b1d421aa1cbf392c05869f8abbc669bb7066", 359 - "sha256": "0cvkik2w368fzimx3y29ncfgw7004qkbdf2n3jy5czvzn35q7dpa" 360 - } 361 - }, 362 - { 363 - "goPackagePath": "github.com/kardianos/osext", 364 - "fetch": { 365 - "type": "git", 366 - "url": "https://github.com/kardianos/osext", 367 - "rev": "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc", 368 - "sha256": "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a" 369 - } 370 - }, 371 - { 372 - "goPackagePath": "github.com/kr/binarydist", 373 - "fetch": { 374 - "type": "git", 375 - "url": "https://github.com/kr/binarydist", 376 - "rev": "9955b0ab8708602d411341e55fffd7e0700f86bd", 377 - "sha256": "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3" 378 - } 379 - }, 380 - { 381 - "goPackagePath": "github.com/jessevdk/go-flags", 382 - "fetch": { 383 - "type": "git", 384 - "url": "https://github.com/jessevdk/go-flags", 385 - "rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539", 386 - "sha256": "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680" 387 - } 388 - }, 389 - { 390 - "goPackagePath": "github.com/prometheus/client_model", 391 - "fetch": { 392 - "type": "git", 393 - "url": "https://github.com/prometheus/client_model", 394 - "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 395 - "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 396 - } 397 - }, 398 - { 399 - "goPackagePath": "github.com/prometheus/common", 400 - "fetch": { 401 - "type": "git", 402 - "url": "https://github.com/prometheus/common", 403 - "rev": "40456948a47496dc22168e6af39297a2f8fbf38c", 404 - "sha256": "15700w18pifng0l2isa6v25y91r5rb7yfgljqw2g2gqrvac6sr5l" 405 - } 406 - }, 407 - { 408 - "goPackagePath": "github.com/beorn7/perks", 409 - "fetch": { 410 - "type": "git", 411 - "url": "https://github.com/beorn7/perks", 412 - "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 413 - "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 414 - } 415 - }, 416 - { 417 - "goPackagePath": "github.com/coreos/go-etcd", 418 - "fetch": { 419 - "type": "git", 420 - "url": "https://github.com/coreos/go-etcd", 421 - "rev": "9847b93751a5fbaf227b893d172cee0104ac6427", 422 - "sha256": "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4" 423 - } 424 - }, 425 - { 426 - "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 427 - "fetch": { 428 - "type": "git", 429 - "url": "https://github.com/matttproud/golang_protobuf_extensions", 430 - "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 431 - "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 432 - } 433 - }, 434 - { 435 - "goPackagePath": "github.com/prometheus/client_golang", 436 - "fetch": { 437 - "type": "git", 438 - "url": "https://github.com/prometheus/client_golang", 439 - "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 440 - "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 441 - } 442 - }, 443 - { 444 - "goPackagePath": "github.com/stathat/go", 445 - "fetch": { 446 - "type": "git", 447 - "url": "https://github.com/stathat/go", 448 - "rev": "91dfa3a59c5b233fef9a346a1460f6e2bc889d93", 449 - "sha256": "105ql5v8r4hqcsq0ag7asdxqg9n7rvf83y1q1dj2nfjyn4manv6r" 450 - } 451 - }, 452 - { 453 - "goPackagePath": "github.com/ugorji/go", 454 - "fetch": { 455 - "type": "git", 456 - "url": "https://github.com/ugorji/go", 457 - "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", 458 - "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" 459 - } 460 - }, 461 - { 462 - "goPackagePath": "github.com/miekg/dns", 463 - "fetch": { 464 - "type": "git", 465 - "url": "https://github.com/miekg/dns", 466 - "rev": "7e024ce8ce18b21b475ac6baf8fa3c42536bf2fa", 467 - "sha256": "0hlwb52lnnj3c6papjk9i5w5cjdw6r7c891v4xksnfvk1f9cy9kl" 468 - } 469 - }, 470 - { 471 - "goPackagePath": "github.com/prometheus/procfs", 472 - "fetch": { 473 - "type": "git", 474 - "url": "https://github.com/prometheus/procfs", 475 - "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 476 - "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 477 - } 478 - }, 479 - { 480 - "goPackagePath": "github.com/schachmat/ingo", 481 - "fetch": { 482 - "type": "git", 483 - "url": "https://github.com/schachmat/ingo", 484 - "rev": "fab41e4e62cbef5d92998746ec25f7e195100f38", 485 - "sha256": "04yfnch7pdabjjqfl2qxjmsaknvp4m1rbjlv8qrpmnqwjkxzx0hb" 486 - } 487 - }, 488 - { 489 - "goPackagePath": "github.com/michaelmacinnis/adapted", 490 - "fetch": { 491 - "type": "git", 492 - "url": "https://github.com/michaelmacinnis/adapted", 493 - "rev": "0dd5fa34d6f9d74c7c0deed1fc224f9a87e02978", 494 - "sha256": "16n3a87m33pqx4qih713q3gw2j6ksj1q3ngjax6bpn5b11rqvikv" 495 - } 496 - }, 497 - { 498 - "goPackagePath": "github.com/peterh/liner", 499 - "fetch": { 500 - "type": "git", 501 - "url": "https://github.com/peterh/liner", 502 - "rev": "ad1edfd30321d8f006ccf05f1e0524adeb943060", 503 - "sha256": "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317" 504 - } 505 - }, 506 - { 507 - "goPackagePath": "github.com/mitchellh/iochan", 508 - "fetch": { 509 - "type": "git", 510 - "url": "https://github.com/mitchellh/iochan", 511 - "rev": "b584a329b193e206025682ae6c10cdbe03b0cd77", 512 - "sha256": "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b" 513 - } 514 - }, 515 - { 516 - "goPackagePath": "github.com/gogo/protobuf", 517 - "fetch": { 518 - "type": "git", 519 - "url": "https://github.com/gogo/protobuf", 520 - "rev": "7883e1468d48d969e1c3ce4bcde89b6a7dd4adc4", 521 - "sha256": "16ja7lqq96q0pnzgnbwnh0j8qzvqgns1nfk8ndxgkg4sg93bg372" 522 - } 523 - }, 524 - { 525 - "goPackagePath": "github.com/golang/glog", 526 - "fetch": { 527 - "type": "git", 528 - "url": "https://github.com/golang/glog", 529 - "rev": "fca8c8854093a154ff1eb580aae10276ad6b1b5f", 530 - "sha256": "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8" 531 - } 532 - }, 533 - { 534 - "goPackagePath": "github.com/mesos/mesos-go", 535 - "fetch": { 536 - "type": "git", 537 - "url": "https://github.com/mesos/mesos-go", 538 - "rev": "aaa5b2fecf0e2db463f4f996c89617d6766b2969", 539 - "sha256": "1pk1fpxksjln6kqvgm1igw3582jgrn14fwa8bdj5cwbpy6skjdvk" 540 - } 541 - }, 542 - { 543 - "goPackagePath": "github.com/pmezard/go-difflib", 544 - "fetch": { 545 - "type": "git", 546 - "url": "https://github.com/pmezard/go-difflib", 547 - "rev": "d8ed2627bdf02c080bf22230dbb337003b7aba2d", 548 - "sha256": "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs" 549 - } 550 - }, 551 - { 552 - "goPackagePath": "github.com/samuel/go-zookeeper", 553 - "fetch": { 554 - "type": "git", 555 - "url": "https://github.com/samuel/go-zookeeper", 556 - "rev": "5bb5cfc093ad18a28148c578f8632cfdb4d802e4", 557 - "sha256": "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z" 558 - } 559 - }, 560 - { 561 - "goPackagePath": "github.com/stretchr/objx", 562 - "fetch": { 563 - "type": "git", 564 - "url": "https://github.com/stretchr/objx", 565 - "rev": "cbeaeb16a013161a98496fad62933b1d21786672", 566 - "sha256": "1xn7iibjik77h6h0jilfvcjkkzaqz45baf44p3rb2i03hbmkqkp1" 567 - } 568 - }, 569 - { 570 - "goPackagePath": "github.com/davecgh/go-spew", 571 - "fetch": { 572 - "type": "git", 573 - "url": "https://github.com/davecgh/go-spew", 574 - "rev": "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d", 575 - "sha256": "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk" 576 - } 577 - }, 578 - { 579 - "goPackagePath": "github.com/emicklei/go-restful", 580 - "fetch": { 581 - "type": "git", 582 - "url": "https://github.com/emicklei/go-restful", 583 - "rev": "892402ba11a2e2fd5e1295dd633481f27365f14d", 584 - "sha256": "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x" 585 - } 586 - }, 587 - { 588 - "goPackagePath": "github.com/stretchr/testify", 589 - "fetch": { 590 - "type": "git", 591 - "url": "https://github.com/stretchr/testify", 592 - "rev": "089c7181b8c728499929ff09b62d3fdd8df8adff", 593 - "sha256": "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p" 594 - } 595 - }, 596 - { 597 - "goPackagePath": "github.com/kr/pty", 598 - "fetch": { 599 - "type": "git", 600 - "url": "https://github.com/kr/pty", 601 - "rev": "67e2db24c831afa6c64fc17b4a143390674365ef", 602 - "sha256": "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d" 603 - } 604 - }, 605 - { 606 - "goPackagePath": "github.com/braintree/manners", 607 - "fetch": { 608 - "type": "git", 609 - "url": "https://github.com/braintree/manners", 610 - "rev": "cab36f97339b1925cd89e158632728025557e550", 611 - "sha256": "1q508c62iiklghkhwqz9c0zsn9hrij7kqb93gdywzj7ms7x6hlfh" 612 - } 613 - }, 614 - { 615 - "goPackagePath": "github.com/codegangsta/cli", 616 - "fetch": { 617 - "type": "git", 618 - "url": "https://github.com/codegangsta/cli", 619 - "rev": "71f57d300dd6a780ac1856c005c4b518cfd498ec", 620 - "sha256": "1fxznirkvank5461789dm5aw5z8aqi0jvwligvz44659rfl376p3" 621 - } 622 - }, 623 - { 624 - "goPackagePath": "github.com/elazarl/go-bindata-assetfs", 625 - "fetch": { 626 - "type": "git", 627 - "url": "https://github.com/elazarl/go-bindata-assetfs", 628 - "rev": "d5cac425555ca5cf00694df246e04f05e6a55150", 629 - "sha256": "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17" 630 - } 631 - }, 632 - { 633 - "goPackagePath": "github.com/fatih/structs", 634 - "fetch": { 635 - "type": "git", 636 - "url": "https://github.com/fatih/structs", 637 - "rev": "a9f7daa9c2729e97450c2da2feda19130a367d8f", 638 - "sha256": "0pyrc7svc826g37al3db19n5l4r2m9h1mlhjh3hz2r41xfaqia50" 639 - } 640 - }, 641 - { 642 - "goPackagePath": "github.com/hashicorp/hcl", 643 - "fetch": { 644 - "type": "git", 645 - "url": "https://github.com/hashicorp/hcl", 646 - "rev": "54864211433d45cb780682431585b3e573b49e4a", 647 - "sha256": "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950" 648 - } 649 - }, 650 - { 651 - "goPackagePath": "github.com/hashicorp/go-multierror", 652 - "fetch": { 653 - "type": "git", 654 - "url": "https://github.com/hashicorp/go-multierror", 655 - "rev": "56912fb08d85084aa318edcf2bba735b97cf35c5", 656 - "sha256": "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r" 657 - } 658 - }, 659 - { 660 - "goPackagePath": "github.com/mreiferson/go-snappystream", 661 - "fetch": { 662 - "type": "git", 663 - "url": "https://github.com/mreiferson/go-snappystream", 664 - "rev": "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504", 665 - "sha256": "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6" 666 - } 667 - }, 668 - { 669 - "goPackagePath": "github.com/bitly/go-nsq", 670 - "fetch": { 671 - "type": "git", 672 - "url": "https://github.com/bitly/go-nsq", 673 - "rev": "22a8bd48c443ec23bb559675b6df8284bbbdab29", 674 - "sha256": "06hrkwk84w8rshkanvfgmgbiml7n06ybv192dvibhwgk2wz2dl46" 675 - } 676 - }, 677 - { 678 - "goPackagePath": "github.com/bitly/go-simplejson", 679 - "fetch": { 680 - "type": "git", 681 - "url": "https://github.com/bitly/go-simplejson", 682 - "rev": "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a", 683 - "sha256": "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy" 684 - } 685 - }, 686 - { 687 - "goPackagePath": "github.com/blang/semver", 688 - "fetch": { 689 - "type": "git", 690 - "url": "https://github.com/blang/semver", 691 - "rev": "9bf7bff48b0388cb75991e58c6df7d13e982f1f2", 692 - "sha256": "11sinbf942dpyc9wdpidkhmqn438cfp5n8x3xqnmq9aszkld9hy7" 693 - } 694 - }, 695 - { 696 - "goPackagePath": "github.com/bmizerany/perks", 697 - "fetch": { 698 - "type": "git", 699 - "url": "https://github.com/bmizerany/perks", 700 - "rev": "6cb9d9d729303ee2628580d9aec5db968da3a607", 701 - "sha256": "0cdh84hmn21is6hvv6dy9qjdcg9w3l2k8avlk0881a8cqm09s90j" 702 - } 703 - }, 704 - { 705 - "goPackagePath": "github.com/BurntSushi/toml", 706 - "fetch": { 707 - "type": "git", 708 - "url": "https://github.com/BurntSushi/toml", 709 - "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", 710 - "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" 711 - } 712 - }, 713 - { 714 - "goPackagePath": "github.com/bitly/go-hostpool", 715 - "fetch": { 716 - "type": "git", 717 - "url": "https://github.com/bitly/go-hostpool", 718 - "rev": "d0e59c22a56e8dadfed24f74f452cea5a52722d2", 719 - "sha256": "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g" 720 - } 721 - }, 722 - { 723 - "goPackagePath": "github.com/bitly/timer_metrics", 724 - "fetch": { 725 - "type": "git", 726 - "url": "https://github.com/bitly/timer_metrics", 727 - "rev": "afad1794bb13e2a094720aeb27c088aa64564895", 728 - "sha256": "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c" 729 - } 730 - }, 731 - { 732 - "goPackagePath": "github.com/mreiferson/go-options", 733 - "fetch": { 734 - "type": "git", 735 - "url": "https://github.com/mreiferson/go-options", 736 - "rev": "7c174072188d0cfbe6f01bb457626abb22bdff52", 737 - "sha256": "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm" 738 - } 739 - }, 740 - { 741 - "goPackagePath": "google.golang.org/api", 742 - "fetch": { 743 - "type": "git", 744 - "url": "https://code.googlesource.com/google-api-go-client", 745 - "rev": "a5c3e2a4792aff40e59840d9ecdff0542a202a80", 746 - "sha256": "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8" 747 - } 748 - }, 749 - { 750 - "goPackagePath": "google.golang.org/cloud", 751 - "fetch": { 752 - "type": "git", 753 - "url": "https://code.googlesource.com/gocloud", 754 - "rev": "6335269abf9002cf5a84613c13cda6010842b834", 755 - "sha256": "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf" 756 - } 757 - }, 758 - { 759 - "goPackagePath": "golang.org/x/oauth2", 760 - "fetch": { 761 - "type": "git", 762 - "url": "https://go.googlesource.com/oauth2", 763 - "rev": "397fe7649477ff2e8ced8fc0b2696f781e53745a", 764 - "sha256": "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8" 765 - } 766 - }, 767 - { 768 - "goPackagePath": "github.com/18F/hmacauth", 769 - "fetch": { 770 - "type": "git", 771 - "url": "https://github.com/18F/hmacauth", 772 - "rev": "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd", 773 - "sha256": "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1" 774 - } 775 - }, 776 - { 777 - "goPackagePath": "github.com/armon/go-metrics", 778 - "fetch": { 779 - "type": "git", 780 - "url": "https://github.com/armon/go-metrics", 781 - "rev": "b2d95e5291cdbc26997d1301a5e467ecbb240e25", 782 - "sha256": "1jvdf98jlbyzbb9w159nifvv8fihrcs66drnl8pilqdjpmkmyyck" 783 - } 784 - }, 785 - { 786 - "goPackagePath": "github.com/mattn/go-isatty", 787 - "fetch": { 788 - "type": "git", 789 - "url": "https://github.com/mattn/go-isatty", 790 - "rev": "ae0b1f8f8004be68d791a576e3d8e7648ab41449", 791 - "sha256": "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj" 792 - } 793 - }, 794 - { 795 - "goPackagePath": "github.com/hashicorp/logutils", 796 - "fetch": { 797 - "type": "git", 798 - "url": "https://github.com/hashicorp/logutils", 799 - "rev": "0dc08b1671f34c4250ce212759ebd880f743d883", 800 - "sha256": "0rynhjwvacv9ibl2k4fwz0xy71d583ac4p33gm20k9yldqnznc7r" 801 - } 802 - }, 803 - { 804 - "goPackagePath": "github.com/armon/go-radix", 805 - "fetch": { 806 - "type": "git", 807 - "url": "https://github.com/armon/go-radix", 808 - "rev": "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93", 809 - "sha256": "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c" 810 - } 811 - }, 812 - { 813 - "goPackagePath": "github.com/hashicorp/go-syslog", 814 - "fetch": { 815 - "type": "git", 816 - "url": "https://github.com/hashicorp/go-syslog", 817 - "rev": "42a2b573b664dbf281bd48c3cc12c086b17a39ba", 818 - "sha256": "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3" 819 - } 820 - }, 821 - { 822 - "goPackagePath": "github.com/hashicorp/memberlist", 823 - "fetch": { 824 - "type": "git", 825 - "url": "https://github.com/hashicorp/memberlist", 826 - "rev": "6025015f2dc659ca2c735112d37e753bda6e329d", 827 - "sha256": "01s2gwnbgvwz4wshz9d4za0p12ji4fnapnlmz3jwfcmcwjpyqfb7" 828 - } 829 - }, 830 - { 831 - "goPackagePath": "github.com/mitchellh/mapstructure", 832 - "fetch": { 833 - "type": "git", 834 - "url": "https://github.com/mitchellh/mapstructure", 835 - "rev": "281073eb9eb092240d33ef253c404f1cca550309", 836 - "sha256": "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh" 837 - } 838 - }, 839 - { 840 - "goPackagePath": "github.com/armon/circbuf", 841 - "fetch": { 842 - "type": "git", 843 - "url": "https://github.com/armon/circbuf", 844 - "rev": "f092b4f207b6e5cce0569056fba9e1a2735cb6cf", 845 - "sha256": "06kwwdwa3hskdh6ws7clj1vim80dyc3ldim8k9y5qpd30x0avn5s" 846 - } 847 - }, 848 - { 849 - "goPackagePath": "github.com/hashicorp/mdns", 850 - "fetch": { 851 - "type": "git", 852 - "url": "https://github.com/hashicorp/mdns", 853 - "rev": "2b439d37011456df8ff83a70ffd1cd6046410113", 854 - "sha256": "17zwk212zmyramnjylpvvrvbbsz0qb5crkhly6yiqkyll3qzpb96" 855 - } 856 - }, 857 - { 858 - "goPackagePath": "github.com/mitchellh/cli", 859 - "fetch": { 860 - "type": "git", 861 - "url": "https://github.com/mitchellh/cli", 862 - "rev": "8102d0ed5ea2709ade1243798785888175f6e415", 863 - "sha256": "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2" 864 - } 865 - }, 866 - { 867 - "goPackagePath": "github.com/ryanuber/columnize", 868 - "fetch": { 869 - "type": "git", 870 - "url": "https://github.com/ryanuber/columnize", 871 - "rev": "44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a", 872 - "sha256": "1qrqr76cw58x2hkjic6h88na5ihgvkmp8mqapj8kmjcjzdxkzhr9" 873 - } 874 - }, 875 - { 876 - "goPackagePath": "github.com/hashicorp/go-msgpack", 877 - "fetch": { 878 - "type": "git", 879 - "url": "https://github.com/ugorji/go", 880 - "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", 881 - "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" 882 - } 883 - }, 884 - { 885 - "goPackagePath": "github.com/hashicorp/go.net", 886 - "fetch": { 887 - "type": "git", 888 - "url": "https://github.com/hashicorp/go.net", 889 - "rev": "104dcad90073cd8d1e6828b2af19185b60cf3e29", 890 - "sha256": "0pfi09h4q6w2x833qxr8r609ml4kw1flqm265j752sb08sbf3zwf" 891 - } 892 - }, 893 - { 894 - "goPackagePath": "golang.org/x/crypto", 895 - "fetch": { 896 - "type": "git", 897 - "url": "https://go.googlesource.com/crypto", 898 - "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 899 - "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 900 - } 901 - }, 902 - { 903 - "goPackagePath": "golang.org/x/tools", 904 - "fetch": { 905 - "type": "git", 906 - "url": "https://go.googlesource.com/tools", 907 - "rev": "9ae4729fba20b3533d829a9c6ba8195b068f2abc", 908 - "sha256": "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1" 909 - } 910 - }, 911 - { 912 - "goPackagePath": "github.com/vincent-petithory/structfield", 913 - "fetch": { 914 - "type": "git", 915 - "url": "https://github.com/vincent-petithory/structfield", 916 - "rev": "01a738558a47fbf16712994d1737fb31c77e7d11", 917 - "sha256": "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw" 918 - } 919 - }, 920 - { 921 - "goPackagePath": "github.com/aybabtme/rgbterm", 922 - "fetch": { 923 - "type": "git", 924 - "url": "https://github.com/aybabtme/rgbterm", 925 - "rev": "c07e2f009ed2311e9c35bca12ec00b38ccd48283", 926 - "sha256": "1qph7drds44jzx1whqlrh1hs58k0wv0v58zyq2a81hmm72gsgzam" 927 - } 928 - }, 929 - { 930 - "goPackagePath": "github.com/vaughan0/go-ini", 931 - "fetch": { 932 - "type": "git", 933 - "url": "https://github.com/vaughan0/go-ini", 934 - "rev": "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1", 935 - "sha256": "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa" 936 - } 937 - }, 938 - { 939 - "goPackagePath": "github.com/mitchellh/go-homedir", 940 - "fetch": { 941 - "type": "git", 942 - "url": "https://github.com/mitchellh/go-homedir", 943 - "rev": "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4", 944 - "sha256": "1l5lrsjrnwxn299mhvyxvz8hd0spkx0d31gszm4cyx21bg1xsiy9" 945 - } 946 - }, 947 - { 948 - "goPackagePath": "github.com/goamz/goamz", 949 - "fetch": { 950 - "type": "git", 951 - "url": "https://github.com/goamz/goamz", 952 - "rev": "2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7", 953 - "sha256": "0rlinp0cvgw66qjndg4padr5s0wd3n7kjfggkx6czqj9bqaxcz4b" 954 - } 955 - }, 956 - { 957 - "goPackagePath": "github.com/nmcclain/asn1-ber", 958 - "fetch": { 959 - "type": "git", 960 - "url": "https://github.com/go-asn1-ber/asn1-ber", 961 - "rev": "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72", 962 - "sha256": "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9" 963 - } 964 - }, 965 - { 966 - "goPackagePath": "gopkg.in/asn1-ber.v1", 967 - "fetch": { 968 - "type": "git", 969 - "url": "https://github.com/go-asn1-ber/asn1-ber", 970 - "rev": "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72", 971 - "sha256": "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9" 972 - } 973 - }, 974 - { 975 - "goPackagePath": "github.com/peterbourgon/g2s", 976 - "fetch": { 977 - "type": "git", 978 - "url": "https://github.com/peterbourgon/g2s", 979 - "rev": "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc", 980 - "sha256": "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj" 981 - } 982 - }, 983 - { 984 - "goPackagePath": "github.com/nmcclain/ldap", 985 - "fetch": { 986 - "type": "git", 987 - "url": "https://github.com/go-ldap/ldap", 988 - "rev": "83e65426fd1c06626e88aa8a085e5bfed0208e29", 989 - "sha256": "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz" 990 - } 991 - }, 992 - { 993 - "goPackagePath": "github.com/kelseyhightower/memkv", 994 - "fetch": { 995 - "type": "git", 996 - "url": "https://github.com/kelseyhightower/memkv", 997 - "rev": "7f9c7f36f45ba80c62fe22779ee78d9b4ca36580", 998 - "sha256": "090x65kr3gqh8fc8z4rm9hc2r0v0k7rfm5vsbmhdh21f48ixw540" 999 - } 1000 - }, 1001 - { 1002 - "goPackagePath": "github.com/armon/consul-api", 1003 - "fetch": { 1004 - "type": "git", 1005 - "url": "https://github.com/armon/consul-api", 1006 - "rev": "f79efe463cdbb62f6d5a55f879a63ec554eb13e5", 1007 - "sha256": "1rkmzfhsazj9p2b6ywvs8yramzvxfxyvplzxi0ldvhcv04887gcp" 1008 - } 1009 - }, 1010 - { 1011 - "goPackagePath": "github.com/garyburd/redigo", 1012 - "fetch": { 1013 - "type": "git", 1014 - "url": "https://github.com/garyburd/redigo", 1015 - "rev": "535138d7bcd717d6531c701ef5933d98b1866257", 1016 - "sha256": "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v" 1017 - } 1018 - }, 1019 - { 1020 - "goPackagePath": "github.com/bkaradzic/go-lz4", 1021 - "fetch": { 1022 - "type": "git", 1023 - "url": "https://github.com/bkaradzic/go-lz4", 1024 - "rev": "74ddf82598bc4745b965729e9c6a463bedd33049", 1025 - "sha256": "1vdid8v0c2v2qhrg9rzn3l7ya1h34jirrxfnir7gv7w6s4ivdvc1" 1026 - } 1027 - }, 1028 - { 1029 - "goPackagePath": "github.com/calmh/luhn", 1030 - "fetch": { 1031 - "type": "git", 1032 - "url": "https://github.com/calmh/luhn", 1033 - "rev": "0c8388ff95fa92d4094011e5a04fc99dea3d1632", 1034 - "sha256": "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs" 1035 - } 1036 - }, 1037 - { 1038 - "goPackagePath": "golang.org/x/text", 1039 - "fetch": { 1040 - "type": "git", 1041 - "url": "https://go.googlesource.com/text", 1042 - "rev": "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e", 1043 - "sha256": "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14" 1044 - } 1045 - }, 1046 - { 1047 - "goPackagePath": "github.com/vitrun/qart", 1048 - "fetch": { 1049 - "type": "git", 1050 - "url": "https://github.com/vitrun/qart", 1051 - "rev": "ccb109cf25f0cd24474da73b9fee4e7a3e8a8ce0", 1052 - "sha256": "0bhp768b8ha6f25dmhwn9q8m2lkbn4qnjf8n7pizk25jn5zjdvc8" 1053 - } 1054 - }, 1055 - { 1056 - "goPackagePath": "github.com/calmh/du", 1057 - "fetch": { 1058 - "type": "git", 1059 - "url": "https://github.com/calmh/du", 1060 - "rev": "3c0690cca16228b97741327b1b6781397afbdb24", 1061 - "sha256": "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa" 1062 - } 1063 - }, 1064 - { 1065 - "goPackagePath": "github.com/calmh/xdr", 1066 - "fetch": { 1067 - "type": "git", 1068 - "url": "https://github.com/calmh/xdr", 1069 - "rev": "e467b5aeb65ca8516fb3925c84991bf1d7cc935e", 1070 - "sha256": "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra" 1071 - } 1072 - }, 1073 - { 1074 - "goPackagePath": "github.com/juju/ratelimit", 1075 - "fetch": { 1076 - "type": "git", 1077 - "url": "https://github.com/juju/ratelimit", 1078 - "rev": "772f5c38e468398c4511514f4f6aa9a4185bc0a0", 1079 - "sha256": "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p" 1080 - } 1081 - }, 1082 - { 1083 - "goPackagePath": "github.com/thejerf/suture", 1084 - "fetch": { 1085 - "type": "git", 1086 - "url": "https://github.com/thejerf/suture", 1087 - "rev": "99c1f2d613756768fc4299acd9dc621e11ed3fd7", 1088 - "sha256": "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4" 1089 - } 1090 - }, 1091 - { 1092 - "goPackagePath": "github.com/golang/snappy", 1093 - "fetch": { 1094 - "type": "git", 1095 - "url": "https://github.com/golang/snappy", 1096 - "rev": "723cc1e459b8eea2dea4583200fd60757d40097a", 1097 - "sha256": "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h" 1098 - } 1099 - }, 1100 - { 1101 - "goPackagePath": "github.com/syndtr/goleveldb", 1102 - "fetch": { 1103 - "type": "git", 1104 - "url": "https://github.com/syndtr/goleveldb", 1105 - "rev": "1a9d62f03ea92815b46fcaab357cfd4df264b1a0", 1106 - "sha256": "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb" 1107 - } 1108 - }, 1109 - { 1110 - "goPackagePath": "github.com/flynn/go-shlex", 1111 - "fetch": { 1112 - "type": "git", 1113 - "url": "https://github.com/flynn/go-shlex", 1114 - "rev": "3f9db97f856818214da2e1057f8ad84803971cff", 1115 - "sha256": "1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia" 1116 - } 1117 - }, 1118 - { 1119 - "goPackagePath": "github.com/xenolf/lego", 1120 - "fetch": { 1121 - "type": "git", 1122 - "url": "https://github.com/xenolf/lego", 1123 - "rev": "ca19a90028e242e878585941c2a27c8f3b3efc25", 1124 - "sha256": "1zkcsbdzbmfzk3kqmcj9l13li8sz228xhrw2wj3ab4a0w6drbw3x" 1125 - } 1126 - }, 1127 - { 1128 - "goPackagePath": "gopkg.in/natefinch/lumberjack.v2", 1129 - "fetch": { 1130 - "type": "git", 1131 - "url": "https://gopkg.in/natefinch/lumberjack.v2", 1132 - "rev": "514cbda263a734ae8caac038dadf05f8f3f9f738", 1133 - "sha256": "1v92v8vkip36l2fs6l5dpp655151hrijjc781cif658r8nf7xr82" 1134 - } 1135 - }, 1136 - { 1137 - "goPackagePath": "github.com/shurcooL/sanitized_anchor_name", 1138 - "fetch": { 1139 - "type": "git", 1140 - "url": "https://github.com/shurcooL/sanitized_anchor_name", 1141 - "rev": "10ef21a441db47d8b13ebcc5fd2310f636973c77", 1142 - "sha256": "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01" 1143 - } 1144 - }, 1145 - { 1146 - "goPackagePath": "gopkg.in/square/go-jose.v1", 1147 - "fetch": { 1148 - "type": "git", 1149 - "url": "https://gopkg.in/square/go-jose.v1", 1150 - "rev": "40d457b439244b546f023d056628e5184136899b", 1151 - "sha256": "0asa1kl1qbx0cyayk44jhxxff0awpkwiw6va7yzrzjzhfc5kvg7p" 1152 - } 1153 - }, 1154 - { 1155 - "goPackagePath": "github.com/mholt/archiver", 1156 - "fetch": { 1157 - "type": "git", 1158 - "url": "https://github.com/mholt/archiver", 1159 - "rev": "85f054813ed511646b0ce5e047697e0651b8e1a4", 1160 - "sha256": "0b38mrfm3rwgdi7hrp4gjhf0y0f6bw73qjkfrkafxjrdpdg7nyly" 1161 - } 1162 - }, 1163 - { 1164 - "goPackagePath": "github.com/dustin/go-humanize", 1165 - "fetch": { 1166 - "type": "git", 1167 - "url": "https://github.com/dustin/go-humanize", 1168 - "rev": "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0", 1169 - "sha256": "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0" 1170 - } 1171 - }, 1172 - { 1173 - "goPackagePath": "github.com/jimstudt/http-authentication", 1174 - "fetch": { 1175 - "type": "git", 1176 - "url": "https://github.com/jimstudt/http-authentication", 1177 - "rev": "3eca13d6893afd7ecabe15f4445f5d2872a1b012", 1178 - "sha256": "1drw3bhrxpjzwryqz9nq5s0yyjqyd42iym3bh1zjs5qsh401cq08" 1179 - } 1180 - }, 1181 - { 1182 - "goPackagePath": "github.com/russross/blackfriday", 1183 - "fetch": { 1184 - "type": "git", 1185 - "url": "https://github.com/russross/blackfriday", 1186 - "rev": "d18b67ae0afd61dae240896eae1785f00709aa31", 1187 - "sha256": "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf" 1188 - } 1189 - }, 1190 - { 1191 - "goPackagePath": "github.com/agl/go-gtk", 1192 - "fetch": { 1193 - "type": "git", 1194 - "url": "https://github.com/agl/go-gtk", 1195 - "rev": "91c1edb38c241d73129e6b098ca1c9fa83abfc15", 1196 - "sha256": "156ixlhakpqgyp35rsvmndrqz8aggv5bcmzg9ynpri3b9j6kim4d" 1197 - } 1198 - }, 1199 - { 1200 - "goPackagePath": "bitbucket.org/ww/goautoneg", 1201 - "fetch": { 1202 - "type": "hg", 1203 - "url": "bitbucket.org/ww/goautoneg", 1204 - "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 1205 - "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 1206 - } 1207 - }, 1208 - { 1209 - "goPackagePath": "github.com/antonlindstrom/mesos_stats", 1210 - "fetch": { 1211 - "type": "git", 1212 - "url": "https://github.com/antonlindstrom/mesos_stats", 1213 - "rev": "0c6ea494c19bedc67ebb85ce3d187ec21050e920", 1214 - "sha256": "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4" 1215 - } 1216 - }, 1217 - { 1218 - "goPackagePath": "github.com/go-sql-driver/mysql", 1219 - "fetch": { 1220 - "type": "git", 1221 - "url": "https://github.com/go-sql-driver/mysql", 1222 - "rev": "fb7299726d2e68745a8805b14f2ff44b5c2cfa84", 1223 - "sha256": "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w" 1224 - } 1225 - }, 1226 - { 1227 - "goPackagePath": "github.com/prometheus/log", 1228 - "fetch": { 1229 - "type": "git", 1230 - "url": "https://github.com/prometheus/log", 1231 - "rev": "439e5db48fbb50ebbaf2c816030473a62f505f55", 1232 - "sha256": "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv" 1233 - } 1234 - }, 1235 - { 1236 - "goPackagePath": "github.com/soundcloud/go-runit", 1237 - "fetch": { 1238 - "type": "git", 1239 - "url": "https://github.com/soundcloud/go-runit", 1240 - "rev": "a9148323a615e2e1c93b7a9893914a360b4945c8", 1241 - "sha256": "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v" 1242 - } 1243 - }, 1244 - { 1245 - "goPackagePath": "github.com/beevik/ntp", 1246 - "fetch": { 1247 - "type": "git", 1248 - "url": "https://github.com/beevik/ntp", 1249 - "rev": "0a5264e2563429030eb922f258229ae3fee5b5dc", 1250 - "sha256": "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24" 1251 - } 1252 - }, 1253 - { 1254 - "goPackagePath": "github.com/julienschmidt/httprouter", 1255 - "fetch": { 1256 - "type": "git", 1257 - "url": "https://github.com/julienschmidt/httprouter", 1258 - "rev": "6aacfd5ab513e34f7e64ea9627ab9670371b34e7", 1259 - "sha256": "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl" 1260 - } 1261 - }, 1262 - { 1263 - "goPackagePath": "github.com/howeyc/fsnotify", 1264 - "fetch": { 1265 - "type": "git", 1266 - "url": "https://github.com/fsnotify/fsnotify", 1267 - "rev": "ea925a0a47d225b2ca7f9932b01d2ed4f3ec74f6", 1268 - "sha256": "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9" 1269 - } 1270 - }, 1271 - { 1272 - "goPackagePath": "github.com/alecthomas/template", 1273 - "fetch": { 1274 - "type": "git", 1275 - "url": "https://github.com/alecthomas/template", 1276 - "rev": "14fd436dd20c3cc65242a9f396b61bfc8a3926fc", 1277 - "sha256": "19rzvvcgvr1z2wz9xpqsmlm8syizbpxjp5zbzgakvrqlajpbjvx2" 1278 - } 1279 - }, 1280 - { 1281 - "goPackagePath": "github.com/alecthomas/units", 1282 - "fetch": { 1283 - "type": "git", 1284 - "url": "https://github.com/alecthomas/units", 1285 - "rev": "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a", 1286 - "sha256": "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl" 1287 - } 1288 - }, 1289 - { 1290 - "goPackagePath": "gopkg.in/alecthomas/kingpin.v2", 1291 - "fetch": { 1292 - "type": "git", 1293 - "url": "https://gopkg.in/alecthomas/kingpin.v2", 1294 - "rev": "21551c2a6259a8145110ca80a36e25c9d7624032", 1295 - "sha256": "1zhpqc4qxsw9lc1b4dwk5r42k9r702ihzrabs3mnsphvm9jx4l59" 1296 - } 1297 - }, 1298 - { 1299 - "goPackagePath": "github.com/Masterminds/vcs", 1300 - "fetch": { 1301 - "type": "git", 1302 - "url": "https://github.com/Masterminds/vcs", 1303 - "rev": "7af28b64c5ec41b1558f5514fd938379822c237c", 1304 - "sha256": "127pamr5lkym3iq6z747bm4y4gyc02glrqb61yv82z1rdyv1dcf6" 1305 - } 1306 - }, 1307 - { 1308 - "goPackagePath": "github.com/boltdb/bolt", 1309 - "fetch": { 1310 - "type": "git", 1311 - "url": "https://github.com/boltdb/bolt", 1312 - "rev": "957d850b5158a4eebf915476058e720f43459584", 1313 - "sha256": "193adhhsqdy0kyq1l1fi8pg2n6pwyrw4h607qm78qyi26f8i7vzf" 1314 - } 1315 - }, 1316 - { 1317 - "goPackagePath": "github.com/cheggaaa/pb", 1318 - "fetch": { 1319 - "type": "git", 1320 - "url": "https://github.com/cheggaaa/pb", 1321 - "rev": "e648e12b78cedf14ebb2fc1855033f07b034cfbb", 1322 - "sha256": "03k4cars7hcqqgdsd0minfls2p7gjpm8q6y8vknh1s68kvxd4xam" 1323 - } 1324 - }, 1325 - { 1326 - "goPackagePath": "github.com/odeke-em/cli-spinner", 1327 - "fetch": { 1328 - "type": "git", 1329 - "url": "https://github.com/odeke-em/cli-spinner", 1330 - "rev": "610063bb4aeef25f7645b3e6080456655ec0fb33", 1331 - "sha256": "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c" 1332 - } 1333 - }, 1334 - { 1335 - "goPackagePath": "github.com/odeke-em/statos", 1336 - "fetch": { 1337 - "type": "git", 1338 - "url": "https://github.com/odeke-em/statos", 1339 - "rev": "f27d6ab69b62abd9d9fe80d355e23a3e45d347d6", 1340 - "sha256": "17cpks8bi9i7p8j38x0wy60jb9g39wbzszcmhx4hlq6yzxr04jvs" 1341 - } 1342 - }, 1343 - { 1344 - "goPackagePath": "github.com/odeke-em/exponential-backoff", 1345 - "fetch": { 1346 - "type": "git", 1347 - "url": "https://github.com/odeke-em/exponential-backoff", 1348 - "rev": "96e25d36ae36ad09ac02cbfe653b44c4043a8e09", 1349 - "sha256": "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6" 1350 - } 1351 - }, 1352 - { 1353 - "goPackagePath": "github.com/odeke-em/extractor", 1354 - "fetch": { 1355 - "type": "git", 1356 - "url": "https://github.com/odeke-em/extractor", 1357 - "rev": "801861aedb854c7ac5e1329e9713023e9dc2b4d4", 1358 - "sha256": "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1" 1359 - } 1360 - }, 1361 - { 1362 - "goPackagePath": "github.com/odeke-em/meddler", 1363 - "fetch": { 1364 - "type": "git", 1365 - "url": "https://github.com/odeke-em/meddler", 1366 - "rev": "d2b51d2b40e786ab5f810d85e65b96404cf33570", 1367 - "sha256": "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x" 1368 - } 1369 - }, 1370 - { 1371 - "goPackagePath": "github.com/odeke-em/xon", 1372 - "fetch": { 1373 - "type": "git", 1374 - "url": "https://github.com/odeke-em/xon", 1375 - "rev": "d580be739d723da4f6378083128f93017b8ab295", 1376 - "sha256": "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc" 1377 - } 1378 - }, 1379 - { 1380 - "goPackagePath": "github.com/odeke-em/cache", 1381 - "fetch": { 1382 - "type": "git", 1383 - "url": "https://github.com/odeke-em/cache", 1384 - "rev": "b51b08cb6cf889deda6c941a5205baecfd16f3eb", 1385 - "sha256": "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4" 1386 - } 1387 - }, 1388 - { 1389 - "goPackagePath": "github.com/odeke-em/command", 1390 - "fetch": { 1391 - "type": "git", 1392 - "url": "https://github.com/odeke-em/command", 1393 - "rev": "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561", 1394 - "sha256": "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62" 1395 - } 1396 - }, 1397 - { 1398 - "goPackagePath": "github.com/odeke-em/log", 1399 - "fetch": { 1400 - "type": "git", 1401 - "url": "https://github.com/odeke-em/log", 1402 - "rev": "cad53c4565a0b0304577bd13f3862350bdc5f907", 1403 - "sha256": "059c933qjikxlvaywzpzljqnab19svymbv6x32pc7khw156fh48w" 1404 - } 1405 - }, 1406 - { 1407 - "goPackagePath": "github.com/odeke-em/pretty-words", 1408 - "fetch": { 1409 - "type": "git", 1410 - "url": "https://github.com/odeke-em/pretty-words", 1411 - "rev": "9d37a7fcb4ae6f94b288d371938482994458cecb", 1412 - "sha256": "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl" 1413 - } 1414 - }, 1415 - { 1416 - "goPackagePath": "github.com/skratchdot/open-golang", 1417 - "fetch": { 1418 - "type": "git", 1419 - "url": "https://github.com/skratchdot/open-golang", 1420 - "rev": "c8748311a7528d0ba7330d302adbc5a677ef9c9e", 1421 - "sha256": "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac" 1422 - } 1423 - }, 1424 - { 1425 - "goPackagePath": "github.com/hashicorp/raft", 1426 - "fetch": { 1427 - "type": "git", 1428 - "url": "https://github.com/hashicorp/raft", 1429 - "rev": "a8065f298505708bf60f518c09178149f3c06f21", 1430 - "sha256": "122mjijphas7ybbvssxv1r36sb8i907gdr9kvplnx6yg9w52j3mn" 1431 - } 1432 - }, 1433 - { 1434 - "goPackagePath": "github.com/hashicorp/raft-boltdb", 1435 - "fetch": { 1436 - "type": "git", 1437 - "url": "https://github.com/hashicorp/raft-boltdb", 1438 - "rev": "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee", 1439 - "sha256": "0p609w6x0h6bapx4b0d91dxnp2kj7dv0534q4blyxp79shv2a8ia" 1440 - } 1441 - }, 1442 - { 1443 - "goPackagePath": "github.com/rakyll/statik", 1444 - "fetch": { 1445 - "type": "git", 1446 - "url": "https://github.com/rakyll/statik", 1447 - "rev": "274df120e9065bdd08eb1120e0375e3dc1ae8465", 1448 - "sha256": "0llk7bxmk66wdiy42h32vj1jfk8zg351xq21hwhrq7gkfljghffp" 1449 - } 1450 - }, 1451 - { 1452 - "goPackagePath": "gopkg.in/fatih/pool.v2", 1453 - "fetch": { 1454 - "type": "git", 1455 - "url": "https://gopkg.in/fatih/pool.v2", 1456 - "rev": "cba550ebf9bce999a02e963296d4bc7a486cb715", 1457 - "sha256": "1jlrakgnpvhi2ny87yrsj1gyrcncfzdhypa9i2mlvvzqlj4r0dn0" 1458 - } 1459 - }, 1460 - { 1461 - "goPackagePath": "github.com/bmizerany/pat", 1462 - "fetch": { 1463 - "type": "git", 1464 - "url": "https://github.com/bmizerany/pat", 1465 - "rev": "b8a35001b773c267eb260a691f4e5499a3531600", 1466 - "sha256": "11zxd45rvjm6cn3wzbi18wy9j4vr1r1hgg6gzlqnxffiizkycxmz" 1467 - } 1468 - }, 1469 - { 1470 - "goPackagePath": "github.com/kimor79/gollectd", 1471 - "fetch": { 1472 - "type": "git", 1473 - "url": "https://github.com/kimor79/gollectd", 1474 - "rev": "cf6dec97343244b5d8a5485463675d42f574aa2d", 1475 - "sha256": "1f3ml406cprzjc192csyr2af4wcadkc74kg8n4c0zdzglxxfsqxa" 1476 - } 1477 - }, 1478 - { 1479 - "goPackagePath": "github.com/monochromegane/conflag", 1480 - "fetch": { 1481 - "type": "git", 1482 - "url": "https://github.com/monochromegane/conflag", 1483 - "rev": "6d68c9aa4183844ddc1655481798fe4d90d483e9", 1484 - "sha256": "0csfr5c8d3kbna9sqhzfp2z06wq6mc6ijja1zj2i82kzsq8534wa" 1485 - } 1486 - }, 1487 - { 1488 - "goPackagePath": "github.com/monochromegane/go-home", 1489 - "fetch": { 1490 - "type": "git", 1491 - "url": "https://github.com/monochromegane/go-home", 1492 - "rev": "25d9dda593924a11ea52e4ffbc8abdb0dbe96401", 1493 - "sha256": "172chakrj22xfm0bcda4qj5zqf7lwr53pzwc3xj6wz8vd2bcxkww" 1494 - } 1495 - }, 1496 - { 1497 - "goPackagePath": "github.com/monochromegane/terminal", 1498 - "fetch": { 1499 - "type": "git", 1500 - "url": "https://github.com/monochromegane/terminal", 1501 - "rev": "2da212063ce19aed90ee5bbb00ad1ad7393d7f48", 1502 - "sha256": "1rddaq9pk5q57ildms35iihghqk505gb349pb0f6k3svchay38nh" 1503 - } 1504 - }, 1505 - { 1506 - "goPackagePath": "github.com/monochromegane/go-gitignore", 1507 - "fetch": { 1508 - "type": "git", 1509 - "url": "https://github.com/monochromegane/go-gitignore", 1510 - "rev": "38717d0a108ca0e5af632cd6845ca77d45b50729", 1511 - "sha256": "0r1inabpgg6sn6i47b02hcmd2p4dc1ab1mcy20mn1b2k3mpdj4b7" 1512 - } 1513 - }, 1514 - { 1515 - "goPackagePath": "github.com/shiena/ansicolor", 1516 - "fetch": { 1517 - "type": "git", 1518 - "url": "https://github.com/shiena/ansicolor", 1519 - "rev": "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b", 1520 - "sha256": "0gwplb1b4fvav1vjf4b2dypy5rcp2w41vrbxkd1dsmac870cy75p" 1521 - } 1522 - }, 1523 - { 1524 - "goPackagePath": "github.com/pquerna/ffjson", 1525 - "fetch": { 1526 - "type": "git", 1527 - "url": "https://github.com/pquerna/ffjson", 1528 - "rev": "674bc015b5b3f50f9bb2561179778586b9af68c5", 1529 - "sha256": "0l53q7b1g25hfjm1iyynfs413rpav4c51yvdr244ivw1x3hksa7a" 1530 - } 1531 - }, 1532 - { 1533 - "goPackagePath": "gopkg.in/kothar/go-backblaze.v0", 1534 - "fetch": { 1535 - "type": "git", 1536 - "url": "https://gopkg.in/kothar/go-backblaze.v0", 1537 - "rev": "373819725fc560fa962c6cd883b533d2ebec4844", 1538 - "sha256": "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx" 1539 - } 1540 - }, 1541 - { 1542 - "goPackagePath": "github.com/jawher/mow.cli", 1543 - "fetch": { 1544 - "type": "git", 1545 - "url": "https://github.com/jawher/mow.cli", 1546 - "rev": "772320464101e904cd51198160eb4d489be9cc49", 1547 - "sha256": "1a8hnh2k3vc3prjhnz4rjbiwhqq6r3mi18h9cdb6fc6s6yzjc19j" 1548 - } 1549 - }, 1550 - { 1551 - "goPackagePath": "github.com/svent/go-flags", 1552 - "fetch": { 1553 - "type": "git", 1554 - "url": "https://github.com/svent/go-flags", 1555 - "rev": "4bcbad344f0318adaf7aabc16929701459009aa3", 1556 - "sha256": "1gb416fgxl9gq4q6wsv3i2grq1mzbi7lvfvmfdqbxqbv9vizzh34" 1557 - } 1558 - }, 1559 - { 1560 - "goPackagePath": "github.com/svent/go-nbreader", 1561 - "fetch": { 1562 - "type": "git", 1563 - "url": "https://github.com/svent/go-nbreader", 1564 - "rev": "7cef48da76dca6a496faa7fe63e39ed665cbd219", 1565 - "sha256": "0hw11jj5r3f6qwydg41nc3c6aadlbkhc1qpxra2609lis0qa9h4r" 1566 - } 1567 - }, 1568 - { 1569 - "goPackagePath": "github.com/tdewolff/buffer", 1570 - "fetch": { 1571 - "type": "git", 1572 - "url": "https://github.com/tdewolff/buffer", 1573 - "rev": "0edfcb7b750146ff879e95831de2ef53605a5cb5", 1574 - "sha256": "1mdd4k9byp22mw0a399j3w73zjb5g0vn58g76rjy7ajb0dzm80vl" 1575 - } 1576 - }, 1577 - { 1578 - "goPackagePath": "github.com/tdewolff/parse", 1579 - "fetch": { 1580 - "type": "git", 1581 - "url": "https://github.com/tdewolff/parse", 1582 - "rev": "34d5c1160d4503da4b456e5094609f2331d6dde3", 1583 - "sha256": "0hxf65fgkrc1q4p99p33xxxy1s6wxpn1vfsnqf9p846awwbqsy0v" 1584 - } 1585 - }, 1586 - { 1587 - "goPackagePath": "github.com/tdewolff/strconv", 1588 - "fetch": { 1589 - "type": "git", 1590 - "url": "https://github.com/tdewolff/strconv", 1591 - "rev": "3e8091f4417ebaaa3910da63a45ea394ebbfb0e3", 1592 - "sha256": "00w2mryfjhz3vaqzxvbwvyhi1vgpc1s4xfv1r9hxn8hwa078q5gp" 1593 - } 1594 - }, 1595 - { 1596 - "goPackagePath": "github.com/matryer/try", 1597 - "fetch": { 1598 - "type": "git", 1599 - "url": "https://github.com/matryer/try", 1600 - "rev": "93d30e50512f879b73829eb79867df38084bcd31", 1601 - "sha256": "0dmc8iar9685ks1ba3vnycjsx8qxwyqv51jb7677dvwnzbqhgw6f" 1602 - } 1603 - }, 1604 - { 1605 - "goPackagePath": "github.com/yosssi/ace", 1606 - "fetch": { 1607 - "type": "git", 1608 - "url": "https://github.com/yosssi/ace", 1609 - "rev": "71afeb714739f9d5f7e1849bcd4a0a5938e1a70d", 1610 - "sha256": "15k7ji8m3nqbwhnsvp82j4qa45sgvwv2giliw2xkdwi2g7mfrn8k" 1611 - } 1612 - }, 1613 - { 1614 - "goPackagePath": "github.com/spf13/viper", 1615 - "fetch": { 1616 - "type": "git", 1617 - "url": "https://github.com/spf13/viper", 1618 - "rev": "c1ccc378a054ea8d4e38d8c67f6938d4760b53dd", 1619 - "sha256": "0lpdzalqhqp9pwsg63inkxwjji7m0pp42ryw1499bqbjp97hriq0" 1620 - } 1621 - }, 1622 - { 1623 - "goPackagePath": "github.com/spf13/pflag", 1624 - "fetch": { 1625 - "type": "git", 1626 - "url": "https://github.com/spf13/pflag", 1627 - "rev": "367864438f1b1a3c7db4da06a2f55b144e6784e0", 1628 - "sha256": "03c6654hv4v1fj79i5sri3p9q2afqgicka4nicb6fr4kcfkkgbfp" 1629 - } 1630 - }, 1631 - { 1632 - "goPackagePath": "github.com/spf13/jwalterweatherman", 1633 - "fetch": { 1634 - "type": "git", 1635 - "url": "https://github.com/spf13/jwalterweatherman", 1636 - "rev": "33c24e77fb80341fe7130ee7c594256ff08ccc46", 1637 - "sha256": "1knvzspqzc2bh58q16zggzc8gcabjp5gr7zk4k7nx5ij4092cg0z" 1638 - } 1639 - }, 1640 - { 1641 - "goPackagePath": "github.com/fsnotify/fsnotify", 1642 - "fetch": { 1643 - "type": "git", 1644 - "url": "https://github.com/fsnotify/fsnotify", 1645 - "rev": "30411dbcefb7a1da7e84f75530ad3abe4011b4f8", 1646 - "sha256": "0kbpvyi6p9942k0vmcw5z13mja47f7hq7nqd332pn2zydss6kddm" 1647 - } 1648 - }, 1649 - { 1650 - "goPackagePath": "github.com/ogier/pflag", 1651 - "fetch": { 1652 - "type": "git", 1653 - "url": "https://github.com/ogier/pflag", 1654 - "rev": "45c278ab3607870051a2ea9040bb85fcb8557481", 1655 - "sha256": "0620v75wppfd84d95n312wpngcb73cph4q3ivs1h0waljfnsrd5l" 1656 - } 1657 - }, 1658 - { 1659 - "goPackagePath": "github.com/magiconair/properties", 1660 - "fetch": { 1661 - "type": "git", 1662 - "url": "https://github.com/magiconair/properties", 1663 - "rev": "c265cfa48dda6474e208715ca93e987829f572f8", 1664 - "sha256": "1ab9ywwsrdq5mvrcwl7m3276y1q4dfwinbv88vgpqwcqai9wkpp3" 1665 - } 1666 - }, 1667 - { 1668 - "goPackagePath": "github.com/bep/inflect", 1669 - "fetch": { 1670 - "type": "git", 1671 - "url": "https://github.com/bep/inflect", 1672 - "rev": "b896c45f5af983b1f416bdf3bb89c4f1f0926f69", 1673 - "sha256": "0drv6in94n7lmap4ajvgqlvdcbpn8alinfdzywzpihvzbx21b3h3" 1674 - } 1675 - }, 1676 - { 1677 - "goPackagePath": "github.com/eknkc/amber", 1678 - "fetch": { 1679 - "type": "git", 1680 - "url": "https://github.com/eknkc/amber", 1681 - "rev": "91774f050c1453128146169b626489e60108ec03", 1682 - "sha256": "1rb8bm35h8a77q4py6r3818cpwh7kpq1kh2ib2rb4i5s7z75ciis" 1683 - } 1684 - }, 1685 - { 1686 - "goPackagePath": "github.com/spf13/afero", 1687 - "fetch": { 1688 - "type": "git", 1689 - "url": "https://github.com/spf13/afero", 1690 - "rev": "1a8ecf8b9da1fb5306e149e83128fc447957d2a8", 1691 - "sha256": "1nrg0gmqnl4h6zjmi4mdhrwnl3l34nzxpq2hsr3nizfvrx5gqbzw" 1692 - } 1693 - }, 1694 - { 1695 - "goPackagePath": "github.com/spf13/cast", 1696 - "fetch": { 1697 - "type": "git", 1698 - "url": "https://github.com/spf13/cast", 1699 - "rev": "27b586b42e29bec072fe7379259cc719e1289da6", 1700 - "sha256": "1y73pfxdvm1bfpghwsfxj8gl4miv6fpzi9azxcknp6rcjn1gmq0x" 1701 - } 1702 - }, 1703 - { 1704 - "goPackagePath": "github.com/spf13/cobra", 1705 - "fetch": { 1706 - "type": "git", 1707 - "url": "https://github.com/spf13/cobra", 1708 - "rev": "bc81c21bd0d8be5ba2d6630a505d79d4467566e7", 1709 - "sha256": "1sp8gl25cjx0yibh6q1i8d5rbxpwaal3z8vz372wfmbz002say8r" 1710 - } 1711 - }, 1712 - { 1713 - "goPackagePath": "github.com/dchest/cssmin", 1714 - "fetch": { 1715 - "type": "git", 1716 - "url": "https://github.com/dchest/cssmin", 1717 - "rev": "fb8d9b44afdc258bfff6052d3667521babcb2239", 1718 - "sha256": "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s" 1719 - } 1720 - }, 1721 - { 1722 - "goPackagePath": "github.com/spf13/fsync", 1723 - "fetch": { 1724 - "type": "git", 1725 - "url": "https://github.com/spf13/fsync", 1726 - "rev": "eefee59ad7de621617d4ff085cf768aab4b919b1", 1727 - "sha256": "0d56xdczawikyczc12i661qc79dbv4q8ihlj4p20zsjkyxxym59p" 1728 - } 1729 - }, 1730 - { 1731 - "goPackagePath": "github.com/cpuguy83/go-md2man", 1732 - "fetch": { 1733 - "type": "git", 1734 - "url": "https://github.com/cpuguy83/go-md2man", 1735 - "rev": "2724a9c9051aa62e9cca11304e7dd518e9e41599", 1736 - "sha256": "1j2bigs7ixy20cdqd246nxr417md2qcyvkfk3x94992cr88d0vyj" 1737 - } 1738 - }, 1739 - { 1740 - "goPackagePath": "github.com/miekg/mmark", 1741 - "fetch": { 1742 - "type": "git", 1743 - "url": "https://github.com/miekg/mmark", 1744 - "rev": "adb5c3e2e9f3e7da9bd25291edda8e66c0045a2a", 1745 - "sha256": "0fycz17fj37fh95lfshdrfwrgkzi3hl1kgnily0cxc9zwfbap3qa" 1746 - } 1747 - }, 1748 - { 1749 - "goPackagePath": "github.com/spf13/nitro", 1750 - "fetch": { 1751 - "type": "git", 1752 - "url": "https://github.com/spf13/nitro", 1753 - "rev": "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8", 1754 - "sha256": "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib" 1755 - } 1756 - }, 1757 - { 1758 - "goPackagePath": "github.com/PuerkitoBio/purell", 1759 - "fetch": { 1760 - "type": "git", 1761 - "url": "https://github.com/PuerkitoBio/purell", 1762 - "rev": "1d5d1cfad45d42ec5f81fa8ef23de09cebc6dcc3", 1763 - "sha256": "12k82576ka21c6572yy2v81kxpjrgf9mffjlz469g3vs0g3nkwlb" 1764 - } 1765 - }, 1766 - { 1767 - "goPackagePath": "github.com/opennota/urlesc", 1768 - "fetch": { 1769 - "type": "git", 1770 - "url": "https://github.com/opennota/urlesc", 1771 - "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587", 1772 - "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni" 1773 - } 1774 - }, 1775 - { 1776 - "goPackagePath": "github.com/pkg/sftp", 1777 - "fetch": { 1778 - "type": "git", 1779 - "url": "https://github.com/pkg/sftp", 1780 - "rev": "d4c18e7ffdc496a38de67dde6e29b2f364afc472", 1781 - "sha256": "0cnl83k317gxskayfj3xwr4bl0vcbjvlwi3q0vjwvircynb6xscj" 1782 - } 1783 - }, 1784 - { 1785 - "goPackagePath": "github.com/kr/fs", 1786 - "fetch": { 1787 - "type": "git", 1788 - "url": "https://github.com/kr/fs", 1789 - "rev": "2788f0dbd16903de03cb8186e5c7d97b69ad387b", 1790 - "sha256": "1c0fipl4rsh0v5liq1ska1dl83v3llab4k6lm8mvrx9c4dyp71ly" 1791 - } 1792 - }, 1793 - { 1794 - "goPackagePath": "github.com/kyokomi/emoji", 1795 - "fetch": { 1796 - "type": "git", 1797 - "url": "https://github.com/kyokomi/emoji", 1798 - "rev": "17c5e7085c9d59630aa578df67f4469481fbe7a9", 1799 - "sha256": "0qs4mi7z1lghiyiw7s2bz5y959wj9ifmhyqh39xwqk69d690jwlp" 1800 - } 1801 - }, 1802 - { 1803 - "goPackagePath": "github.com/pkg/errors", 1804 - "fetch": { 1805 - "type": "git", 1806 - "url": "https://github.com/pkg/errors", 1807 - "rev": "494e70f7620561491c2ca11e185bbef4b70060da", 1808 - "sha256": "0a0961ixl67vryhnzyzhai357c9n9a7v3vpkpqrh32spn033gjd9" 1809 - } 1810 - }, 1811 - { 1812 - "goPackagePath": "github.com/PuerkitoBio/urlesc", 1813 - "fetch": { 1814 - "type": "git", 1815 - "url": "https://github.com/PuerkitoBio/urlesc", 1816 - "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587", 1817 - "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni" 1818 - } 1819 - } 1820 - ]
+25 -6
pkgs/development/tools/deis/deps.json
··· 1 1 [ 2 2 { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "github.com/docopt/docopt-go", 6 - "golang.org/x/crypto", 7 - "gopkg.in/yaml.v2" 8 - ] 3 + "goPackagePath": "gopkg.in/yaml.v2", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://gopkg.in/yaml.v2", 7 + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 8 + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/docopt/docopt-go", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/docopt/docopt-go", 16 + "rev": "784ddc588536785e7299f7272f39101f7faccc3f", 17 + "sha256": "0wwz48jl9fvl1iknvn9dqr4gfy1qs03gxaikrxxp9gry6773v3sj" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "golang.org/x/crypto", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://go.googlesource.com/crypto", 25 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 26 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 27 + } 9 28 } 10 29 ]
+18 -7
pkgs/development/tools/go2nix/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/Masterminds/vcs", 6 - "github.com/jawher/mow.cli" 7 - ] 8 - } 2 + { 3 + "goPackagePath": "github.com/Masterminds/vcs", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/Masterminds/vcs", 7 + "rev": "7af28b64c5ec41b1558f5514fd938379822c237c", 8 + "sha256": "127pamr5lkym3iq6z747bm4y4gyc02glrqb61yv82z1rdyv1dcf6" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/jawher/mow.cli", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/jawher/mow.cli", 16 + "rev": "772320464101e904cd51198160eb4d489be9cc49", 17 + "sha256": "1a8hnh2k3vc3prjhnz4rjbiwhqq6r3mi18h9cdb6fc6s6yzjc19j" 18 + } 19 + } 9 20 ]
+9 -6
pkgs/development/tools/golint/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "golang.org/x/tools" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "golang.org/x/tools", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/tools", 7 + "rev": "9ae4729fba20b3533d829a9c6ba8195b068f2abc", 8 + "sha256": "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1" 9 + } 10 + } 8 11 ]
+9 -6
pkgs/development/tools/gotools/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "golang.org/x/net" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "golang.org/x/net", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/net", 7 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 8 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 9 + } 10 + } 8 11 ]
+9 -6
pkgs/development/tools/gox/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/mitchellh/iochan" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "github.com/mitchellh/iochan", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/mitchellh/iochan", 7 + "rev": "b584a329b193e206025682ae6c10cdbe03b0cd77", 8 + "sha256": "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b" 9 + } 10 + } 8 11 ]
+18 -7
pkgs/development/tools/remarshal/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/BurntSushi/toml", 6 - "gopkg.in/yaml.v2" 7 - ] 8 - } 2 + { 3 + "goPackagePath": "gopkg.in/yaml.v2", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://gopkg.in/yaml.v2", 7 + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 8 + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/BurntSushi/toml", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/BurntSushi/toml", 16 + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", 17 + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" 18 + } 19 + } 9 20 ]
+9 -6
pkgs/development/tools/textql/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/mattn/go-sqlite3" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "github.com/mattn/go-sqlite3", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/mattn/go-sqlite3", 7 + "rev": "b4142c444a8941d0d92b0b7103a24df9cd815e42", 8 + "sha256": "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla" 9 + } 10 + } 8 11 ]
+70 -11
pkgs/development/web/minify/deps.json
··· 1 1 [ 2 2 { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/tdewolff/buffer", 6 - "github.com/tdewolff/parse", 7 - "github.com/tdewolff/strconv", 8 - "github.com/dustin/go-humanize", 9 - "github.com/fsnotify/fsnotify", 10 - "github.com/matryer/try", 11 - "github.com/ogier/pflag", 12 - "golang.org/x/sys" 13 - ] 3 + "goPackagePath": "golang.org/x/sys", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/sys", 7 + "rev": "d9157a9621b69ad1d8d77a1933590c416593f24f", 8 + "sha256": "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/dustin/go-humanize", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/dustin/go-humanize", 16 + "rev": "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0", 17 + "sha256": "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/tdewolff/buffer", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/tdewolff/buffer", 25 + "rev": "0edfcb7b750146ff879e95831de2ef53605a5cb5", 26 + "sha256": "1mdd4k9byp22mw0a399j3w73zjb5g0vn58g76rjy7ajb0dzm80vl" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/tdewolff/parse", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/tdewolff/parse", 34 + "rev": "34d5c1160d4503da4b456e5094609f2331d6dde3", 35 + "sha256": "0hxf65fgkrc1q4p99p33xxxy1s6wxpn1vfsnqf9p846awwbqsy0v" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/tdewolff/strconv", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/tdewolff/strconv", 43 + "rev": "3e8091f4417ebaaa3910da63a45ea394ebbfb0e3", 44 + "sha256": "00w2mryfjhz3vaqzxvbwvyhi1vgpc1s4xfv1r9hxn8hwa078q5gp" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/matryer/try", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/matryer/try", 52 + "rev": "93d30e50512f879b73829eb79867df38084bcd31", 53 + "sha256": "0dmc8iar9685ks1ba3vnycjsx8qxwyqv51jb7677dvwnzbqhgw6f" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/fsnotify/fsnotify", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/fsnotify/fsnotify", 61 + "rev": "30411dbcefb7a1da7e84f75530ad3abe4011b4f8", 62 + "sha256": "0kbpvyi6p9942k0vmcw5z13mja47f7hq7nqd332pn2zydss6kddm" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/ogier/pflag", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/ogier/pflag", 70 + "rev": "45c278ab3607870051a2ea9040bb85fcb8557481", 71 + "sha256": "0620v75wppfd84d95n312wpngcb73cph4q3ivs1h0waljfnsrd5l" 72 + } 14 73 } 15 74 ]
+144 -21
pkgs/servers/caddy/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/BurntSushi/toml", 6 - "github.com/flynn/go-shlex", 7 - "github.com/hashicorp/go-syslog", 8 - "gopkg.in/yaml.v2", 9 - "github.com/xenolf/lego", 10 - "golang.org/x/crypto", 11 - "gopkg.in/natefinch/lumberjack.v2", 12 - "github.com/shurcooL/sanitized_anchor_name", 13 - "gopkg.in/square/go-jose.v1", 14 - "github.com/mholt/archiver", 15 - "github.com/dustin/go-humanize", 16 - "github.com/gorilla/websocket", 17 - "github.com/jimstudt/http-authentication", 18 - "github.com/miekg/dns", 19 - "golang.org/x/net", 20 - "github.com/russross/blackfriday" 21 - ] 22 - } 2 + { 3 + "goPackagePath": "gopkg.in/yaml.v2", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://gopkg.in/yaml.v2", 7 + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 8 + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "golang.org/x/crypto", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://go.googlesource.com/crypto", 16 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 17 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "golang.org/x/net", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://go.googlesource.com/net", 25 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 26 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/gorilla/websocket", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/gorilla/websocket", 34 + "rev": "a622679ebd7a3b813862379232f645f8e690e43f", 35 + "sha256": "1nc9jbcmgya1i6dmf6sbcqsnxi9hbjg6dz1z0k7zmc6xdwlq0y4q" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/miekg/dns", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/miekg/dns", 43 + "rev": "7e024ce8ce18b21b475ac6baf8fa3c42536bf2fa", 44 + "sha256": "0hlwb52lnnj3c6papjk9i5w5cjdw6r7c891v4xksnfvk1f9cy9kl" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/BurntSushi/toml", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/BurntSushi/toml", 52 + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", 53 + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/hashicorp/go-syslog", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/hashicorp/go-syslog", 61 + "rev": "42a2b573b664dbf281bd48c3cc12c086b17a39ba", 62 + "sha256": "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/flynn/go-shlex", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/flynn/go-shlex", 70 + "rev": "3f9db97f856818214da2e1057f8ad84803971cff", 71 + "sha256": "1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/xenolf/lego", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/xenolf/lego", 79 + "rev": "ca19a90028e242e878585941c2a27c8f3b3efc25", 80 + "sha256": "1zkcsbdzbmfzk3kqmcj9l13li8sz228xhrw2wj3ab4a0w6drbw3x" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "gopkg.in/natefinch/lumberjack.v2", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://gopkg.in/natefinch/lumberjack.v2", 88 + "rev": "514cbda263a734ae8caac038dadf05f8f3f9f738", 89 + "sha256": "1v92v8vkip36l2fs6l5dpp655151hrijjc781cif658r8nf7xr82" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/shurcooL/sanitized_anchor_name", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/shurcooL/sanitized_anchor_name", 97 + "rev": "10ef21a441db47d8b13ebcc5fd2310f636973c77", 98 + "sha256": "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01" 99 + } 100 + }, 101 + { 102 + "goPackagePath": "gopkg.in/square/go-jose.v1", 103 + "fetch": { 104 + "type": "git", 105 + "url": "https://gopkg.in/square/go-jose.v1", 106 + "rev": "40d457b439244b546f023d056628e5184136899b", 107 + "sha256": "0asa1kl1qbx0cyayk44jhxxff0awpkwiw6va7yzrzjzhfc5kvg7p" 108 + } 109 + }, 110 + { 111 + "goPackagePath": "github.com/mholt/archiver", 112 + "fetch": { 113 + "type": "git", 114 + "url": "https://github.com/mholt/archiver", 115 + "rev": "85f054813ed511646b0ce5e047697e0651b8e1a4", 116 + "sha256": "0b38mrfm3rwgdi7hrp4gjhf0y0f6bw73qjkfrkafxjrdpdg7nyly" 117 + } 118 + }, 119 + { 120 + "goPackagePath": "github.com/dustin/go-humanize", 121 + "fetch": { 122 + "type": "git", 123 + "url": "https://github.com/dustin/go-humanize", 124 + "rev": "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0", 125 + "sha256": "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0" 126 + } 127 + }, 128 + { 129 + "goPackagePath": "github.com/jimstudt/http-authentication", 130 + "fetch": { 131 + "type": "git", 132 + "url": "https://github.com/jimstudt/http-authentication", 133 + "rev": "3eca13d6893afd7ecabe15f4445f5d2872a1b012", 134 + "sha256": "1drw3bhrxpjzwryqz9nq5s0yyjqyd42iym3bh1zjs5qsh401cq08" 135 + } 136 + }, 137 + { 138 + "goPackagePath": "github.com/russross/blackfriday", 139 + "fetch": { 140 + "type": "git", 141 + "url": "https://github.com/russross/blackfriday", 142 + "rev": "d18b67ae0afd61dae240896eae1785f00709aa31", 143 + "sha256": "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf" 144 + } 145 + } 23 146 ]
+18 -7
pkgs/servers/etcd/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/olekukonko/tablewriter", 6 - "github.com/mattn/go-runewidth" 7 - ] 8 - } 2 + { 3 + "goPackagePath": "github.com/olekukonko/tablewriter", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/olekukonko/tablewriter", 7 + "rev": "cca8bbc0798408af109aaaa239cbd2634846b340", 8 + "sha256": "0f9ph3z7lh6p6gihbl1461j9yq5qiaqxr9mzdkp512n18v89ml48" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/mattn/go-runewidth", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/mattn/go-runewidth", 16 + "rev": "d6bea18f789704b5f83375793155289da36a3c7f", 17 + "sha256": "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs" 18 + } 19 + } 9 20 ]
+72 -13
pkgs/servers/gotty/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/kr/pty", 6 - "github.com/braintree/manners", 7 - "github.com/codegangsta/cli", 8 - "github.com/elazarl/go-bindata-assetfs", 9 - "github.com/fatih/structs", 10 - "github.com/gorilla/websocket", 11 - "github.com/hashicorp/hcl", 12 - "github.com/hashicorp/go-multierror" 13 - ] 14 - } 2 + { 3 + "goPackagePath": "github.com/gorilla/websocket", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/gorilla/websocket", 7 + "rev": "a622679ebd7a3b813862379232f645f8e690e43f", 8 + "sha256": "1nc9jbcmgya1i6dmf6sbcqsnxi9hbjg6dz1z0k7zmc6xdwlq0y4q" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/kr/pty", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/kr/pty", 16 + "rev": "67e2db24c831afa6c64fc17b4a143390674365ef", 17 + "sha256": "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/braintree/manners", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/braintree/manners", 25 + "rev": "cab36f97339b1925cd89e158632728025557e550", 26 + "sha256": "1q508c62iiklghkhwqz9c0zsn9hrij7kqb93gdywzj7ms7x6hlfh" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/codegangsta/cli", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/codegangsta/cli", 34 + "rev": "71f57d300dd6a780ac1856c005c4b518cfd498ec", 35 + "sha256": "1fxznirkvank5461789dm5aw5z8aqi0jvwligvz44659rfl376p3" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/elazarl/go-bindata-assetfs", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/elazarl/go-bindata-assetfs", 43 + "rev": "d5cac425555ca5cf00694df246e04f05e6a55150", 44 + "sha256": "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/fatih/structs", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/fatih/structs", 52 + "rev": "a9f7daa9c2729e97450c2da2feda19130a367d8f", 53 + "sha256": "0pyrc7svc826g37al3db19n5l4r2m9h1mlhjh3hz2r41xfaqia50" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/hashicorp/hcl", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/hashicorp/hcl", 61 + "rev": "54864211433d45cb780682431585b3e573b49e4a", 62 + "sha256": "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/hashicorp/go-multierror", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/hashicorp/go-multierror", 70 + "rev": "56912fb08d85084aa318edcf2bba735b97cf35c5", 71 + "sha256": "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r" 72 + } 73 + } 15 74 ]
+63 -12
pkgs/servers/interlock/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "github.com/Sirupsen/logrus", 6 - "github.com/agl/ed25519", 7 - "github.com/golang/protobuf", 8 - "github.com/janimo/textsecure", 9 - "golang.org/x/crypto", 10 - "golang.org/x/net", 11 - "gopkg.in/yaml.v2" 12 - ] 13 - } 2 + { 3 + "goPackagePath": "gopkg.in/yaml.v2", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://gopkg.in/yaml.v2", 7 + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 8 + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "golang.org/x/crypto", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://go.googlesource.com/crypto", 16 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 17 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/Sirupsen/logrus", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/Sirupsen/logrus", 25 + "rev": "be52937128b38f1d99787bb476c789e2af1147f1", 26 + "sha256": "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/agl/ed25519", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/agl/ed25519", 34 + "rev": "278e1ec8e8a6e017cd07577924d6766039146ced", 35 + "sha256": "165d89cc6dl28j4hkn86pny0jz3sa6hamzdvpvwdj4iha3x6lzc9" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/golang/protobuf", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/golang/protobuf", 43 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 44 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/janimo/textsecure", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/janimo/textsecure", 52 + "rev": "c38f429e48d6b2776d17b4171f216f132185b0f6", 53 + "sha256": "191pwgfgphr0x04dwpvniax4wilpv52l25bw7d3igvnw302y7i94" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "golang.org/x/net", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://go.googlesource.com/net", 61 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 62 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 63 + } 64 + } 14 65 ]
+99 -16
pkgs/servers/mesos-dns/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/gogo/protobuf", 6 - "github.com/golang/glog", 7 - "github.com/mesos/mesos-go", 8 - "github.com/pmezard/go-difflib", 9 - "github.com/samuel/go-zookeeper", 10 - "github.com/stretchr/objx", 11 - "github.com/davecgh/go-spew", 12 - "github.com/emicklei/go-restful", 13 - "github.com/stretchr/testify", 14 - "github.com/miekg/dns", 15 - "golang.org/x/net" 16 - ] 17 - } 2 + { 3 + "goPackagePath": "golang.org/x/net", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/net", 7 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 8 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/miekg/dns", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/miekg/dns", 16 + "rev": "7e024ce8ce18b21b475ac6baf8fa3c42536bf2fa", 17 + "sha256": "0hlwb52lnnj3c6papjk9i5w5cjdw6r7c891v4xksnfvk1f9cy9kl" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/gogo/protobuf", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/gogo/protobuf", 25 + "rev": "7883e1468d48d969e1c3ce4bcde89b6a7dd4adc4", 26 + "sha256": "16ja7lqq96q0pnzgnbwnh0j8qzvqgns1nfk8ndxgkg4sg93bg372" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/golang/glog", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/golang/glog", 34 + "rev": "fca8c8854093a154ff1eb580aae10276ad6b1b5f", 35 + "sha256": "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/mesos/mesos-go", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/mesos/mesos-go", 43 + "rev": "aaa5b2fecf0e2db463f4f996c89617d6766b2969", 44 + "sha256": "1pk1fpxksjln6kqvgm1igw3582jgrn14fwa8bdj5cwbpy6skjdvk" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/pmezard/go-difflib", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/pmezard/go-difflib", 52 + "rev": "d8ed2627bdf02c080bf22230dbb337003b7aba2d", 53 + "sha256": "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/samuel/go-zookeeper", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/samuel/go-zookeeper", 61 + "rev": "5bb5cfc093ad18a28148c578f8632cfdb4d802e4", 62 + "sha256": "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/stretchr/objx", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/stretchr/objx", 70 + "rev": "cbeaeb16a013161a98496fad62933b1d21786672", 71 + "sha256": "1xn7iibjik77h6h0jilfvcjkkzaqz45baf44p3rb2i03hbmkqkp1" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/davecgh/go-spew", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/davecgh/go-spew", 79 + "rev": "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d", 80 + "sha256": "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "github.com/emicklei/go-restful", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://github.com/emicklei/go-restful", 88 + "rev": "892402ba11a2e2fd5e1295dd633481f27365f14d", 89 + "sha256": "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/stretchr/testify", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/stretchr/testify", 97 + "rev": "089c7181b8c728499929ff09b62d3fdd8df8adff", 98 + "sha256": "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p" 99 + } 100 + } 18 101 ]
+9 -6
pkgs/servers/monitoring/prometheus/cli_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/prometheus/client_golang" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "github.com/prometheus/client_golang", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/prometheus/client_golang", 7 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 8 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 9 + } 10 + } 8 11 ]
+63 -12
pkgs/servers/monitoring/prometheus/collectd-exporter_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/prometheus/client_golang", 6 - "github.com/prometheus/client_model", 7 - "github.com/prometheus/procfs", 8 - "bitbucket.org/ww/goautoneg", 9 - "github.com/beorn7/perks", 10 - "github.com/golang/protobuf", 11 - "github.com/matttproud/golang_protobuf_extensions" 12 - ] 13 - } 2 + { 3 + "goPackagePath": "github.com/golang/protobuf", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/golang/protobuf", 7 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 8 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/prometheus/client_model", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/prometheus/client_model", 16 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 17 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/beorn7/perks", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/beorn7/perks", 25 + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 26 + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 34 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 35 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/prometheus/client_golang", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/prometheus/client_golang", 43 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 44 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/prometheus/procfs", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/prometheus/procfs", 52 + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 53 + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "bitbucket.org/ww/goautoneg", 58 + "fetch": { 59 + "type": "hg", 60 + "url": "bitbucket.org/ww/goautoneg", 61 + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 62 + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 63 + } 64 + } 14 65 ]
+63 -12
pkgs/servers/monitoring/prometheus/haproxy-exporter_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/prometheus/client_golang", 6 - "github.com/prometheus/client_model", 7 - "github.com/matttproud/golang_protobuf_extensions", 8 - "github.com/prometheus/procfs", 9 - "github.com/beorn7/perks", 10 - "github.com/golang/protobuf", 11 - "bitbucket.org/ww/goautoneg" 12 - ] 13 - } 2 + { 3 + "goPackagePath": "github.com/golang/protobuf", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/golang/protobuf", 7 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 8 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/prometheus/client_model", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/prometheus/client_model", 16 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 17 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/beorn7/perks", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/beorn7/perks", 25 + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 26 + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 34 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 35 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/prometheus/client_golang", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/prometheus/client_golang", 43 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 44 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/prometheus/procfs", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/prometheus/procfs", 52 + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 53 + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "bitbucket.org/ww/goautoneg", 58 + "fetch": { 59 + "type": "hg", 60 + "url": "bitbucket.org/ww/goautoneg", 61 + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 62 + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 63 + } 64 + } 14 65 ]
+81 -14
pkgs/servers/monitoring/prometheus/mesos-exporter_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/golang/glog", 6 - "github.com/prometheus/client_golang", 7 - "github.com/prometheus/client_model", 8 - "github.com/antonlindstrom/mesos_stats", 9 - "github.com/beorn7/perks", 10 - "github.com/golang/protobuf", 11 - "github.com/matttproud/golang_protobuf_extensions", 12 - "github.com/prometheus/procfs", 13 - "bitbucket.org/ww/goautoneg" 14 - ] 15 - } 2 + { 3 + "goPackagePath": "github.com/golang/protobuf", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/golang/protobuf", 7 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 8 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/prometheus/client_model", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/prometheus/client_model", 16 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 17 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/beorn7/perks", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/beorn7/perks", 25 + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 26 + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 34 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 35 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/prometheus/client_golang", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/prometheus/client_golang", 43 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 44 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/prometheus/procfs", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/prometheus/procfs", 52 + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 53 + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/golang/glog", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/golang/glog", 61 + "rev": "fca8c8854093a154ff1eb580aae10276ad6b1b5f", 62 + "sha256": "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "bitbucket.org/ww/goautoneg", 67 + "fetch": { 68 + "type": "hg", 69 + "url": "bitbucket.org/ww/goautoneg", 70 + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 71 + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/antonlindstrom/mesos_stats", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/antonlindstrom/mesos_stats", 79 + "rev": "0c6ea494c19bedc67ebb85ce3d187ec21050e920", 80 + "sha256": "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4" 81 + } 82 + } 16 83 ]
+72 -13
pkgs/servers/monitoring/prometheus/mysqld-exporter_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/prometheus/client_golang", 6 - "github.com/prometheus/client_model", 7 - "github.com/matttproud/golang_protobuf_extensions", 8 - "github.com/prometheus/procfs", 9 - "github.com/beorn7/perks", 10 - "github.com/golang/protobuf", 11 - "bitbucket.org/ww/goautoneg", 12 - "github.com/go-sql-driver/mysql" 13 - ] 14 - } 2 + { 3 + "goPackagePath": "github.com/golang/protobuf", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/golang/protobuf", 7 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 8 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/prometheus/client_model", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/prometheus/client_model", 16 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 17 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/beorn7/perks", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/beorn7/perks", 25 + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 26 + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 34 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 35 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/prometheus/client_golang", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/prometheus/client_golang", 43 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 44 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/prometheus/procfs", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/prometheus/procfs", 52 + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 53 + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "bitbucket.org/ww/goautoneg", 58 + "fetch": { 59 + "type": "hg", 60 + "url": "bitbucket.org/ww/goautoneg", 61 + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 62 + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/go-sql-driver/mysql", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/go-sql-driver/mysql", 70 + "rev": "fb7299726d2e68745a8805b14f2ff44b5c2cfa84", 71 + "sha256": "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w" 72 + } 73 + } 15 74 ]
+81 -14
pkgs/servers/monitoring/prometheus/nginx-exporter_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/prometheus/log", 6 - "github.com/prometheus/client_golang", 7 - "github.com/prometheus/client_model", 8 - "github.com/prometheus/procfs", 9 - "github.com/Sirupsen/logrus", 10 - "github.com/beorn7/perks", 11 - "github.com/golang/protobuf", 12 - "github.com/matttproud/golang_protobuf_extensions", 13 - "bitbucket.org/ww/goautoneg" 14 - ] 15 - } 2 + { 3 + "goPackagePath": "github.com/Sirupsen/logrus", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/Sirupsen/logrus", 7 + "rev": "be52937128b38f1d99787bb476c789e2af1147f1", 8 + "sha256": "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/golang/protobuf", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/golang/protobuf", 16 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 17 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/prometheus/client_model", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/prometheus/client_model", 25 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 26 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/beorn7/perks", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/beorn7/perks", 34 + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 35 + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 43 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 44 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/prometheus/client_golang", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/prometheus/client_golang", 52 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 53 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/prometheus/procfs", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/prometheus/procfs", 61 + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 62 + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "bitbucket.org/ww/goautoneg", 67 + "fetch": { 68 + "type": "hg", 69 + "url": "bitbucket.org/ww/goautoneg", 70 + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 71 + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/prometheus/log", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/prometheus/log", 79 + "rev": "439e5db48fbb50ebbaf2c816030473a62f505f55", 80 + "sha256": "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv" 81 + } 82 + } 16 83 ]
+36 -9
pkgs/servers/monitoring/prometheus/prom2json_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/golang/protobuf", 6 - "github.com/matttproud/golang_protobuf_extensions", 7 - "github.com/prometheus/client_golang", 8 - "github.com/prometheus/client_model" 9 - ] 10 - } 2 + { 3 + "goPackagePath": "github.com/golang/protobuf", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/golang/protobuf", 7 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 8 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/prometheus/client_model", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/prometheus/client_model", 16 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 17 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 25 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 26 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/prometheus/client_golang", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/prometheus/client_golang", 34 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 35 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 36 + } 37 + } 11 38 ]
+72 -13
pkgs/servers/monitoring/prometheus/pushgateway_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/julienschmidt/httprouter", 6 - "github.com/prometheus/client_golang", 7 - "github.com/prometheus/client_model", 8 - "bitbucket.org/ww/goautoneg", 9 - "github.com/golang/protobuf", 10 - "github.com/matttproud/golang_protobuf_extensions", 11 - "github.com/prometheus/procfs", 12 - "github.com/beorn7/perks" 13 - ] 14 - } 2 + { 3 + "goPackagePath": "github.com/golang/protobuf", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/golang/protobuf", 7 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 8 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/prometheus/client_model", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/prometheus/client_model", 16 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 17 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/beorn7/perks", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/beorn7/perks", 25 + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 26 + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 34 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 35 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/prometheus/client_golang", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/prometheus/client_golang", 43 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 44 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/prometheus/procfs", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/prometheus/procfs", 52 + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 53 + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "bitbucket.org/ww/goautoneg", 58 + "fetch": { 59 + "type": "hg", 60 + "url": "bitbucket.org/ww/goautoneg", 61 + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 62 + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/julienschmidt/httprouter", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/julienschmidt/httprouter", 70 + "rev": "6aacfd5ab513e34f7e64ea9627ab9670371b34e7", 71 + "sha256": "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl" 72 + } 73 + } 15 74 ]
+72 -13
pkgs/servers/monitoring/prometheus/statsd-bridge_deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/howeyc/fsnotify", 6 - "github.com/prometheus/client_golang", 7 - "github.com/prometheus/client_model", 8 - "bitbucket.org/ww/goautoneg", 9 - "github.com/beorn7/perks", 10 - "github.com/golang/protobuf", 11 - "github.com/matttproud/golang_protobuf_extensions", 12 - "github.com/prometheus/procfs" 13 - ] 14 - } 2 + { 3 + "goPackagePath": "github.com/golang/protobuf", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/golang/protobuf", 7 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 8 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/prometheus/client_model", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/prometheus/client_model", 16 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 17 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/beorn7/perks", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/beorn7/perks", 25 + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 26 + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 34 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 35 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/prometheus/client_golang", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/prometheus/client_golang", 43 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 44 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/prometheus/procfs", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/prometheus/procfs", 52 + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 53 + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "bitbucket.org/ww/goautoneg", 58 + "fetch": { 59 + "type": "hg", 60 + "url": "bitbucket.org/ww/goautoneg", 61 + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 62 + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/howeyc/fsnotify", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/fsnotify/fsnotify", 70 + "rev": "ea925a0a47d225b2ca7f9932b01d2ed4f3ec74f6", 71 + "sha256": "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9" 72 + } 73 + } 15 74 ]
+81 -14
pkgs/servers/nsq/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/mreiferson/go-snappystream", 6 - "github.com/bitly/go-nsq", 7 - "github.com/bitly/go-simplejson", 8 - "github.com/blang/semver", 9 - "github.com/bmizerany/perks", 10 - "github.com/BurntSushi/toml", 11 - "github.com/bitly/go-hostpool", 12 - "github.com/bitly/timer_metrics", 13 - "github.com/mreiferson/go-options" 14 - ] 15 - } 2 + { 3 + "goPackagePath": "github.com/mreiferson/go-snappystream", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/mreiferson/go-snappystream", 7 + "rev": "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504", 8 + "sha256": "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/bitly/go-nsq", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/bitly/go-nsq", 16 + "rev": "22a8bd48c443ec23bb559675b6df8284bbbdab29", 17 + "sha256": "06hrkwk84w8rshkanvfgmgbiml7n06ybv192dvibhwgk2wz2dl46" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/bitly/go-simplejson", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/bitly/go-simplejson", 25 + "rev": "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a", 26 + "sha256": "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/blang/semver", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/blang/semver", 34 + "rev": "9bf7bff48b0388cb75991e58c6df7d13e982f1f2", 35 + "sha256": "11sinbf942dpyc9wdpidkhmqn438cfp5n8x3xqnmq9aszkld9hy7" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/bmizerany/perks", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/bmizerany/perks", 43 + "rev": "6cb9d9d729303ee2628580d9aec5db968da3a607", 44 + "sha256": "0cdh84hmn21is6hvv6dy9qjdcg9w3l2k8avlk0881a8cqm09s90j" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/BurntSushi/toml", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/BurntSushi/toml", 52 + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", 53 + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/bitly/go-hostpool", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/bitly/go-hostpool", 61 + "rev": "d0e59c22a56e8dadfed24f74f452cea5a52722d2", 62 + "sha256": "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/bitly/timer_metrics", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/bitly/timer_metrics", 70 + "rev": "afad1794bb13e2a094720aeb27c088aa64564895", 71 + "sha256": "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/mreiferson/go-options", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/mreiferson/go-options", 79 + "rev": "7c174072188d0cfbe6f01bb457626abb22bdff52", 80 + "sha256": "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm" 81 + } 82 + } 16 83 ]
+81 -14
pkgs/servers/oauth2_proxy/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "google.golang.org/api", 6 - "google.golang.org/cloud", 7 - "golang.org/x/oauth2", 8 - "github.com/18F/hmacauth", 9 - "github.com/mreiferson/go-options", 10 - "github.com/BurntSushi/toml", 11 - "github.com/bitly/go-simplejson", 12 - "golang.org/x/net", 13 - "gopkg.in/fsnotify.v1" 14 - ] 15 - } 2 + { 3 + "goPackagePath": "gopkg.in/fsnotify.v1", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://gopkg.in/fsnotify.v1", 7 + "rev": "96c060f6a6b7e0d6f75fddd10efeaca3e5d1bcb0", 8 + "sha256": "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "golang.org/x/net", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://go.googlesource.com/net", 16 + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", 17 + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/bitly/go-simplejson", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/bitly/go-simplejson", 25 + "rev": "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a", 26 + "sha256": "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/BurntSushi/toml", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/BurntSushi/toml", 34 + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", 35 + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/mreiferson/go-options", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/mreiferson/go-options", 43 + "rev": "7c174072188d0cfbe6f01bb457626abb22bdff52", 44 + "sha256": "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "google.golang.org/api", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://code.googlesource.com/google-api-go-client", 52 + "rev": "a5c3e2a4792aff40e59840d9ecdff0542a202a80", 53 + "sha256": "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "google.golang.org/cloud", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://code.googlesource.com/gocloud", 61 + "rev": "6335269abf9002cf5a84613c13cda6010842b834", 62 + "sha256": "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "golang.org/x/oauth2", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://go.googlesource.com/oauth2", 70 + "rev": "397fe7649477ff2e8ced8fc0b2696f781e53745a", 71 + "sha256": "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/18F/hmacauth", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/18F/hmacauth", 79 + "rev": "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd", 80 + "sha256": "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1" 81 + } 82 + } 16 83 ]
+135 -21
pkgs/servers/serf/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/armon/go-metrics", 6 - "github.com/mattn/go-isatty", 7 - "github.com/hashicorp/logutils", 8 - "github.com/armon/go-radix", 9 - "github.com/bgentry/speakeasy", 10 - "github.com/hashicorp/go-syslog", 11 - "github.com/hashicorp/memberlist", 12 - "github.com/mitchellh/mapstructure", 13 - "github.com/armon/circbuf", 14 - "github.com/hashicorp/go-msgpack", 15 - "github.com/hashicorp/go.net", 16 - "github.com/hashicorp/mdns", 17 - "github.com/mitchellh/cli", 18 - "github.com/ryanuber/columnize", 19 - "github.com/miekg/dns", 20 - "golang.org/x/crypto" 21 - ] 22 - } 2 + { 3 + "goPackagePath": "golang.org/x/crypto", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/crypto", 7 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 8 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/miekg/dns", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/miekg/dns", 16 + "rev": "7e024ce8ce18b21b475ac6baf8fa3c42536bf2fa", 17 + "sha256": "0hlwb52lnnj3c6papjk9i5w5cjdw6r7c891v4xksnfvk1f9cy9kl" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/armon/go-metrics", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/armon/go-metrics", 25 + "rev": "b2d95e5291cdbc26997d1301a5e467ecbb240e25", 26 + "sha256": "1jvdf98jlbyzbb9w159nifvv8fihrcs66drnl8pilqdjpmkmyyck" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/mattn/go-isatty", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/mattn/go-isatty", 34 + "rev": "ae0b1f8f8004be68d791a576e3d8e7648ab41449", 35 + "sha256": "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/hashicorp/logutils", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/hashicorp/logutils", 43 + "rev": "0dc08b1671f34c4250ce212759ebd880f743d883", 44 + "sha256": "0rynhjwvacv9ibl2k4fwz0xy71d583ac4p33gm20k9yldqnznc7r" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/armon/go-radix", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/armon/go-radix", 52 + "rev": "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93", 53 + "sha256": "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/hashicorp/go-syslog", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/hashicorp/go-syslog", 61 + "rev": "42a2b573b664dbf281bd48c3cc12c086b17a39ba", 62 + "sha256": "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/hashicorp/memberlist", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/hashicorp/memberlist", 70 + "rev": "6025015f2dc659ca2c735112d37e753bda6e329d", 71 + "sha256": "01s2gwnbgvwz4wshz9d4za0p12ji4fnapnlmz3jwfcmcwjpyqfb7" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/mitchellh/mapstructure", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/mitchellh/mapstructure", 79 + "rev": "281073eb9eb092240d33ef253c404f1cca550309", 80 + "sha256": "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "github.com/armon/circbuf", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://github.com/armon/circbuf", 88 + "rev": "f092b4f207b6e5cce0569056fba9e1a2735cb6cf", 89 + "sha256": "06kwwdwa3hskdh6ws7clj1vim80dyc3ldim8k9y5qpd30x0avn5s" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/hashicorp/mdns", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/hashicorp/mdns", 97 + "rev": "2b439d37011456df8ff83a70ffd1cd6046410113", 98 + "sha256": "17zwk212zmyramnjylpvvrvbbsz0qb5crkhly6yiqkyll3qzpb96" 99 + } 100 + }, 101 + { 102 + "goPackagePath": "github.com/mitchellh/cli", 103 + "fetch": { 104 + "type": "git", 105 + "url": "https://github.com/mitchellh/cli", 106 + "rev": "8102d0ed5ea2709ade1243798785888175f6e415", 107 + "sha256": "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2" 108 + } 109 + }, 110 + { 111 + "goPackagePath": "github.com/ryanuber/columnize", 112 + "fetch": { 113 + "type": "git", 114 + "url": "https://github.com/ryanuber/columnize", 115 + "rev": "44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a", 116 + "sha256": "1qrqr76cw58x2hkjic6h88na5ihgvkmp8mqapj8kmjcjzdxkzhr9" 117 + } 118 + }, 119 + { 120 + "goPackagePath": "github.com/hashicorp/go-msgpack", 121 + "fetch": { 122 + "type": "git", 123 + "url": "https://github.com/ugorji/go", 124 + "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", 125 + "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" 126 + } 127 + }, 128 + { 129 + "goPackagePath": "github.com/hashicorp/go.net", 130 + "fetch": { 131 + "type": "git", 132 + "url": "https://github.com/hashicorp/go.net", 133 + "rev": "104dcad90073cd8d1e6828b2af19185b60cf3e29", 134 + "sha256": "0pfi09h4q6w2x833qxr8r609ml4kw1flqm265j752sb08sbf3zwf" 135 + } 136 + } 23 137 ]
+126 -19
pkgs/servers/skydns/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/miekg/dns", 6 - "github.com/prometheus/client_golang", 7 - "github.com/prometheus/client_model", 8 - "bitbucket.org/ww/goautoneg", 9 - "github.com/prometheus/common", 10 - "github.com/prometheus/procfs", 11 - "github.com/coreos/go-systemd", 12 - "github.com/matttproud/golang_protobuf_extensions", 13 - "github.com/ugorji/go", 14 - "github.com/golang/protobuf", 15 - "github.com/stathat/go", 16 - "github.com/beorn7/perks", 17 - "github.com/coreos/go-etcd", 18 - "github.com/rcrowley/go-metrics" 19 - ] 20 - } 2 + { 3 + "goPackagePath": "github.com/golang/protobuf", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/golang/protobuf", 7 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 8 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/coreos/go-systemd", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/coreos/go-systemd", 16 + "rev": "a606a1e936df81b70d85448221c7b1c6d8a74ef1", 17 + "sha256": "0fhan564swp982dnzzspb6jzfdl453489c0qavh65g3shy5x8x28" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/rcrowley/go-metrics", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/rcrowley/go-metrics", 25 + "rev": "1ce93efbc8f9c568886b2ef85ce305b2217b3de3", 26 + "sha256": "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/prometheus/client_model", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/prometheus/client_model", 34 + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", 35 + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/prometheus/common", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/prometheus/common", 43 + "rev": "40456948a47496dc22168e6af39297a2f8fbf38c", 44 + "sha256": "15700w18pifng0l2isa6v25y91r5rb7yfgljqw2g2gqrvac6sr5l" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/beorn7/perks", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/beorn7/perks", 52 + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", 53 + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/coreos/go-etcd", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/coreos/go-etcd", 61 + "rev": "9847b93751a5fbaf227b893d172cee0104ac6427", 62 + "sha256": "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/matttproud/golang_protobuf_extensions", 70 + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", 71 + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/prometheus/client_golang", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/prometheus/client_golang", 79 + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", 80 + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "github.com/stathat/go", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://github.com/stathat/go", 88 + "rev": "91dfa3a59c5b233fef9a346a1460f6e2bc889d93", 89 + "sha256": "105ql5v8r4hqcsq0ag7asdxqg9n7rvf83y1q1dj2nfjyn4manv6r" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/ugorji/go", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/ugorji/go", 97 + "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", 98 + "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" 99 + } 100 + }, 101 + { 102 + "goPackagePath": "github.com/miekg/dns", 103 + "fetch": { 104 + "type": "git", 105 + "url": "https://github.com/miekg/dns", 106 + "rev": "7e024ce8ce18b21b475ac6baf8fa3c42536bf2fa", 107 + "sha256": "0hlwb52lnnj3c6papjk9i5w5cjdw6r7c891v4xksnfvk1f9cy9kl" 108 + } 109 + }, 110 + { 111 + "goPackagePath": "github.com/prometheus/procfs", 112 + "fetch": { 113 + "type": "git", 114 + "url": "https://github.com/prometheus/procfs", 115 + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", 116 + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" 117 + } 118 + }, 119 + { 120 + "goPackagePath": "bitbucket.org/ww/goautoneg", 121 + "fetch": { 122 + "type": "hg", 123 + "url": "bitbucket.org/ww/goautoneg", 124 + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", 125 + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" 126 + } 127 + } 21 128 ]
+18 -7
pkgs/shells/elvish/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/mattn/go-sqlite3", 6 - "github.com/elves/getopt" 7 - ] 8 - } 2 + { 3 + "goPackagePath": "github.com/elves/getopt", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/elves/getopt", 7 + "rev": "f91a7bf920995832d55a1182f26657bc975b9c24", 8 + "sha256": "0wz5dz0iq1b1c2w30mmcgll9xidsrnlvs2906jw9szy0h67310za" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/mattn/go-sqlite3", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/mattn/go-sqlite3", 16 + "rev": "b4142c444a8941d0d92b0b7103a24df9cd815e42", 17 + "sha256": "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla" 18 + } 19 + } 9 20 ]
+27 -8
pkgs/shells/oh/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/michaelmacinnis/adapted", 6 - "github.com/peterh/liner", 7 - "golang.org/x/sys" 8 - ] 9 - } 2 + { 3 + "goPackagePath": "golang.org/x/sys", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/sys", 7 + "rev": "d9157a9621b69ad1d8d77a1933590c416593f24f", 8 + "sha256": "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/michaelmacinnis/adapted", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/michaelmacinnis/adapted", 16 + "rev": "0dd5fa34d6f9d74c7c0deed1fc224f9a87e02978", 17 + "sha256": "16n3a87m33pqx4qih713q3gw2j6ksj1q3ngjax6bpn5b11rqvikv" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/peterh/liner", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/peterh/liner", 25 + "rev": "ad1edfd30321d8f006ccf05f1e0524adeb943060", 26 + "sha256": "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317" 27 + } 28 + } 10 29 ]
+9 -6
pkgs/tools/X11/go-sct/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "github.com/cpucycle/astrotime" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "github.com/cpucycle/astrotime", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/cpucycle/astrotime", 7 + "rev": "9c7d514efdb561775030eaf8f1a9ae6bddb3a2ca", 8 + "sha256": "024sc7g55v4s54irssm5wsn74sr2k2ynsm6z16w47q66cxhgvby1" 9 + } 10 + } 8 11 ]
+171 -24
pkgs/tools/admin/lxd/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "github.com/golang/protobuf", 6 - "github.com/gorilla/websocket", 7 - "github.com/syndtr/gocapability", 8 - "gopkg.in/inconshreveable/log15.v2", 9 - "github.com/gorilla/mux", 10 - "github.com/pborman/uuid", 11 - "golang.org/x/crypto", 12 - "gopkg.in/flosch/pongo2.v3", 13 - "gopkg.in/tomb.v2", 14 - "github.com/olekukonko/tablewriter", 15 - "github.com/mattn/go-sqlite3", 16 - "gopkg.in/lxc/go-lxc.v2", 17 - "gopkg.in/yaml.v2", 18 - "github.com/mattn/go-runewidth", 19 - "github.com/coreos/go-systemd", 20 - "github.com/dustinkirkland/golang-petname", 21 - "github.com/gorilla/context", 22 - "github.com/mattn/go-colorable", 23 - "github.com/gosexy/gettext" 24 - ] 25 - } 2 + { 3 + "goPackagePath": "gopkg.in/yaml.v2", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://gopkg.in/yaml.v2", 7 + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 8 + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "golang.org/x/crypto", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://go.googlesource.com/crypto", 16 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 17 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/golang/protobuf", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/golang/protobuf", 25 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 26 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "gopkg.in/tomb.v2", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://gopkg.in/tomb.v2", 34 + "rev": "14b3d72120e8d10ea6e6b7f87f7175734b1faab8", 35 + "sha256": "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/gorilla/websocket", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/gorilla/websocket", 43 + "rev": "a622679ebd7a3b813862379232f645f8e690e43f", 44 + "sha256": "1nc9jbcmgya1i6dmf6sbcqsnxi9hbjg6dz1z0k7zmc6xdwlq0y4q" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/syndtr/gocapability", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/syndtr/gocapability", 52 + "rev": "2c00daeb6c3b45114c80ac44119e7b8801fdd852", 53 + "sha256": "1x7jdcg2r5pakjf20q7bdiidfmv7vcjiyg682186rkp2wz0yws0l" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "gopkg.in/inconshreveable/log15.v2", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://gopkg.in/inconshreveable/log15.v2", 61 + "rev": "b105bd37f74e5d9dc7b6ad7806715c7a2b83fd3f", 62 + "sha256": "18rldvi60i7b3lljfrsqgcc24gdkw2pcixxydznyggaqhh96l6a8" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/gorilla/mux", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/gorilla/mux", 70 + "rev": "8096f47503459bcc74d1f4c487b7e6e42e5746b5", 71 + "sha256": "0163fm9jsh54df471mx9kfhdg0070klqhw9ja0qwdzqibxq791b9" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/pborman/uuid", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/pborman/uuid", 79 + "rev": "ca53cad383cad2479bbba7f7a1a05797ec1386e4", 80 + "sha256": "0rcx669bbjkkwdlw81spnra4ffgzd4rbpywnrj3w41m9vq6mk1gn" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "gopkg.in/flosch/pongo2.v3", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://gopkg.in/flosch/pongo2.v3", 88 + "rev": "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9", 89 + "sha256": "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/olekukonko/tablewriter", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/olekukonko/tablewriter", 97 + "rev": "cca8bbc0798408af109aaaa239cbd2634846b340", 98 + "sha256": "0f9ph3z7lh6p6gihbl1461j9yq5qiaqxr9mzdkp512n18v89ml48" 99 + } 100 + }, 101 + { 102 + "goPackagePath": "github.com/mattn/go-sqlite3", 103 + "fetch": { 104 + "type": "git", 105 + "url": "https://github.com/mattn/go-sqlite3", 106 + "rev": "b4142c444a8941d0d92b0b7103a24df9cd815e42", 107 + "sha256": "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla" 108 + } 109 + }, 110 + { 111 + "goPackagePath": "gopkg.in/lxc/go-lxc.v2", 112 + "fetch": { 113 + "type": "git", 114 + "url": "https://gopkg.in/lxc/go-lxc.v2", 115 + "rev": "8f9e220b36393c03854c2d224c5a55644b13e205", 116 + "sha256": "1dc1n2561k3pxbm2zzh3qwlh30bcb2k9v22ghvr7ps2j9lmhs0ip" 117 + } 118 + }, 119 + { 120 + "goPackagePath": "github.com/mattn/go-runewidth", 121 + "fetch": { 122 + "type": "git", 123 + "url": "https://github.com/mattn/go-runewidth", 124 + "rev": "d6bea18f789704b5f83375793155289da36a3c7f", 125 + "sha256": "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs" 126 + } 127 + }, 128 + { 129 + "goPackagePath": "github.com/coreos/go-systemd", 130 + "fetch": { 131 + "type": "git", 132 + "url": "https://github.com/coreos/go-systemd", 133 + "rev": "a606a1e936df81b70d85448221c7b1c6d8a74ef1", 134 + "sha256": "0fhan564swp982dnzzspb6jzfdl453489c0qavh65g3shy5x8x28" 135 + } 136 + }, 137 + { 138 + "goPackagePath": "github.com/dustinkirkland/golang-petname", 139 + "fetch": { 140 + "type": "git", 141 + "url": "https://github.com/dustinkirkland/golang-petname", 142 + "rev": "2182cecef7f257230fc998bc351a08a5505f5e6c", 143 + "sha256": "1xagj34y5rxl7rykhil8iqxlls9rbgcxgdvgfp7kg39pinw83arl" 144 + } 145 + }, 146 + { 147 + "goPackagePath": "github.com/gorilla/context", 148 + "fetch": { 149 + "type": "git", 150 + "url": "https://github.com/gorilla/context", 151 + "rev": "215affda49addc4c8ef7e2534915df2c8c35c6cd", 152 + "sha256": "1ybvjknncyx1f112mv28870n0l7yrymsr0861vzw10gc4yn1h97g" 153 + } 154 + }, 155 + { 156 + "goPackagePath": "github.com/mattn/go-colorable", 157 + "fetch": { 158 + "type": "git", 159 + "url": "https://github.com/mattn/go-colorable", 160 + "rev": "3dac7b4f76f6e17fb39b768b89e3783d16e237fe", 161 + "sha256": "08680mba8hh2rghymqbzd4m40r9k765w5kbzvrif9ngd6h85qnw6" 162 + } 163 + }, 164 + { 165 + "goPackagePath": "github.com/gosexy/gettext", 166 + "fetch": { 167 + "type": "git", 168 + "url": "https://github.com/gosexy/gettext", 169 + "rev": "305f360aee30243660f32600b87c3c1eaa947187", 170 + "sha256": "0sm7ziv56ms0lrk30ipbl6i17azar3a44dd2xvr011442zs5ym09" 171 + } 172 + } 26 173 ]
+17 -14
pkgs/tools/filesystems/go-mtpfs/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "github.com/hanwen/go-fuse" 6 - ] 7 - }, 8 - { 9 - "goPackagePath": "github.com/hanwen/usb", 10 - "fetch": { 11 - "type": "git", 12 - "url": "https://github.com/hanwen/usb", 13 - "rev": "69aee4530ac705cec7c5344418d982aaf15cf0b1", 14 - "sha256": "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky" 2 + { 3 + "goPackagePath": "github.com/hanwen/go-fuse", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/hanwen/go-fuse", 7 + "rev": "bd746dd8bcc8c059a9d953a786a6156eb83f398e", 8 + "sha256": "1dvvclp418j3d02v9717sfqhl6fw6yyddr9r3j8gsiv8nb62ib56" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/hanwen/usb", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/hanwen/usb", 16 + "rev": "69aee4530ac705cec7c5344418d982aaf15cf0b1", 17 + "sha256": "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky" 18 + } 15 19 } 16 - } 17 20 ]
+25 -6
pkgs/tools/misc/gawp/deps.json
··· 1 1 [ 2 2 { 3 - "include": "../../../../development/go-modules/libs.json", 4 - "packages": [ 5 - "golang.org/x/sys", 6 - "gopkg.in/yaml.v2", 7 - "gopkg.in/fsnotify.v1" 8 - ] 3 + "goPackagePath": "golang.org/x/sys", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/sys", 7 + "rev": "d9157a9621b69ad1d8d77a1933590c416593f24f", 8 + "sha256": "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "gopkg.in/fsnotify.v1", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://gopkg.in/fsnotify.v1", 16 + "rev": "96c060f6a6b7e0d6f75fddd10efeaca3e5d1bcb0", 17 + "sha256": "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "gopkg.in/yaml.v2", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://gopkg.in/yaml.v2", 25 + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 26 + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 27 + } 9 28 } 10 29 ]
+9 -6
pkgs/tools/misc/i3cat/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/vincent-petithory/structfield" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "github.com/vincent-petithory/structfield", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/vincent-petithory/structfield", 7 + "rev": "01a738558a47fbf16712994d1737fb31c77e7d11", 8 + "sha256": "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw" 9 + } 10 + } 8 11 ]
+45 -10
pkgs/tools/misc/mongodb-tools/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "github.com/howeyc/gopass", 6 - "github.com/jessevdk/go-flags", 7 - "golang.org/x/crypto", 8 - "gopkg.in/mgo.v2", 9 - "gopkg.in/tomb.v2" 10 - ] 11 - } 2 + { 3 + "goPackagePath": "golang.org/x/crypto", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/crypto", 7 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 8 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/howeyc/gopass", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/howeyc/gopass", 16 + "rev": "2c70fa70727c953c51695f800f25d6b44abb368e", 17 + "sha256": "152lrkfxk205rlxiign0w5wb0fmfh910yz4jhlv4f4l1qr1h2lx8" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "gopkg.in/mgo.v2", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://gopkg.in/mgo.v2", 25 + "rev": "c6a7dce14133ccac2dcac3793f1d6e2ef048503a", 26 + "sha256": "0rg232q1bkq3y3kd5816hgk1jpf7i38aha5q5ia7j6p9xashz7vj" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "gopkg.in/tomb.v2", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://gopkg.in/tomb.v2", 34 + "rev": "14b3d72120e8d10ea6e6b7f87f7175734b1faab8", 35 + "sha256": "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/jessevdk/go-flags", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/jessevdk/go-flags", 43 + "rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539", 44 + "sha256": "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680" 45 + } 46 + } 12 47 ]
+9 -6
pkgs/tools/misc/upower-notify/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "github.com/godbus/dbus" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "github.com/godbus/dbus", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/godbus/dbus", 7 + "rev": "32c6cc29c14570de4cf6d7e7737d68fb2d01ad15", 8 + "sha256": "0v401f761l88yapiaw23pxvxviqrwl2r2vfd6lq02044i7x4i5r3" 9 + } 10 + } 8 11 ]
+99 -17
pkgs/tools/networking/ngrok/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "gopkg.in/yaml.v1", 6 - "github.com/gorilla/websocket", 7 - "github.com/rcrowley/go-metrics", 8 - "github.com/inconshreveable/go-vhost", 9 - "code.google.com/p/log4go", 10 - "github.com/daviddengcn/go-colortext", 11 - "gopkg.in/yaml.v1", 12 - "github.com/inconshreveable/mousetrap", 13 - "github.com/nsf/termbox-go", 14 - "gopkg.in/inconshreveable/go-update.v0", 15 - "github.com/kardianos/osext", 16 - "github.com/kr/binarydist" 17 - ] 18 - } 2 + { 3 + "goPackagePath": "github.com/gorilla/websocket", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/gorilla/websocket", 7 + "rev": "a622679ebd7a3b813862379232f645f8e690e43f", 8 + "sha256": "1nc9jbcmgya1i6dmf6sbcqsnxi9hbjg6dz1z0k7zmc6xdwlq0y4q" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/rcrowley/go-metrics", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/rcrowley/go-metrics", 16 + "rev": "1ce93efbc8f9c568886b2ef85ce305b2217b3de3", 17 + "sha256": "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/inconshreveable/go-vhost", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/inconshreveable/go-vhost", 25 + "rev": "c4c28117502e4bf00960c8282b2d1c51c865fe2c", 26 + "sha256": "1rway6sls6fl2s2jk20ajj36rrlzh9944ncc9pdd19kifix54z32" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "code.google.com/p/log4go", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/ccpaging/log4go", 34 + "rev": "cb4cc51cd03958183d3b637d0750497d88c2f7a8", 35 + "sha256": "0l9f86zzhla9hq35q4xhgs837283qrm4gxbp5lrwwls54ifiq7k2" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/daviddengcn/go-colortext", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/daviddengcn/go-colortext", 43 + "rev": "13eaeb896f5985a1ab74ddea58707a73d875ba57", 44 + "sha256": "0618xs9lc5xfp5zkkb5j47dr7i30ps3zj5fj0zpv8afqh2cc689x" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "gopkg.in/yaml.v1", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/go-yaml/yaml", 52 + "rev": "b0c168ac0cf9493da1f9bb76c34b26ffef940b4a", 53 + "sha256": "0jbdy41pplf2d1j24qwr8gc5qsig6ai5ch8rwgvg72kq9q0901cy" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/inconshreveable/mousetrap", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/inconshreveable/mousetrap", 61 + "rev": "9dbb96d2c3a964935b0870b5abaea13c98b483aa", 62 + "sha256": "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/nsf/termbox-go", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/nsf/termbox-go", 70 + "rev": "9aecf65084a5754f12d27508fa2e6ed56851953b", 71 + "sha256": "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "gopkg.in/inconshreveable/go-update.v0", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/inconshreveable/go-update", 79 + "rev": "d8b0b1d421aa1cbf392c05869f8abbc669bb7066", 80 + "sha256": "0cvkik2w368fzimx3y29ncfgw7004qkbdf2n3jy5czvzn35q7dpa" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "github.com/kardianos/osext", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://github.com/kardianos/osext", 88 + "rev": "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc", 89 + "sha256": "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/kr/binarydist", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/kr/binarydist", 97 + "rev": "9955b0ab8708602d411341e55fffd7e0700f86bd", 98 + "sha256": "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3" 99 + } 100 + } 19 101 ]
+9 -6
pkgs/tools/networking/s3gof3r/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../../go-modules/libs.json", 4 - "packages": [ 5 - "github.com/jessevdk/go-flags" 6 - ] 7 - } 2 + { 3 + "goPackagePath": "github.com/jessevdk/go-flags", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/jessevdk/go-flags", 7 + "rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539", 8 + "sha256": "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680" 9 + } 10 + } 8 11 ]
+99 -17
pkgs/tools/security/hologram/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/aybabtme/rgbterm", 6 - "github.com/vaughan0/go-ini", 7 - "github.com/howeyc/gopass", 8 - "github.com/AdRoll/hologram", 9 - "github.com/mitchellh/go-homedir", 10 - "github.com/goamz/goamz", 11 - "github.com/nmcclain/asn1-ber", 12 - "gopkg.in/asn1-ber.v1", 13 - "github.com/peterbourgon/g2s", 14 - "github.com/nmcclain/ldap", 15 - "github.com/golang/protobuf", 16 - "golang.org/x/crypto" 17 - ] 18 - } 2 + { 3 + "goPackagePath": "golang.org/x/crypto", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/crypto", 7 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 8 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/golang/protobuf", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/golang/protobuf", 16 + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", 17 + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/howeyc/gopass", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/howeyc/gopass", 25 + "rev": "2c70fa70727c953c51695f800f25d6b44abb368e", 26 + "sha256": "152lrkfxk205rlxiign0w5wb0fmfh910yz4jhlv4f4l1qr1h2lx8" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/aybabtme/rgbterm", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/aybabtme/rgbterm", 34 + "rev": "c07e2f009ed2311e9c35bca12ec00b38ccd48283", 35 + "sha256": "1qph7drds44jzx1whqlrh1hs58k0wv0v58zyq2a81hmm72gsgzam" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/vaughan0/go-ini", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/vaughan0/go-ini", 43 + "rev": "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1", 44 + "sha256": "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/mitchellh/go-homedir", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/mitchellh/go-homedir", 52 + "rev": "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4", 53 + "sha256": "1l5lrsjrnwxn299mhvyxvz8hd0spkx0d31gszm4cyx21bg1xsiy9" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/goamz/goamz", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/goamz/goamz", 61 + "rev": "2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7", 62 + "sha256": "0rlinp0cvgw66qjndg4padr5s0wd3n7kjfggkx6czqj9bqaxcz4b" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/nmcclain/asn1-ber", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/go-asn1-ber/asn1-ber", 70 + "rev": "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72", 71 + "sha256": "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "gopkg.in/asn1-ber.v1", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/go-asn1-ber/asn1-ber", 79 + "rev": "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72", 80 + "sha256": "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9" 81 + } 82 + }, 83 + { 84 + "goPackagePath": "github.com/peterbourgon/g2s", 85 + "fetch": { 86 + "type": "git", 87 + "url": "https://github.com/peterbourgon/g2s", 88 + "rev": "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc", 89 + "sha256": "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj" 90 + } 91 + }, 92 + { 93 + "goPackagePath": "github.com/nmcclain/ldap", 94 + "fetch": { 95 + "type": "git", 96 + "url": "https://github.com/go-ldap/ldap", 97 + "rev": "83e65426fd1c06626e88aa8a085e5bfed0208e29", 98 + "sha256": "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz" 99 + } 100 + } 19 101 ]
+72 -13
pkgs/tools/system/confd/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/kelseyhightower/memkv", 6 - "github.com/armon/consul-api", 7 - "github.com/garyburd/redigo", 8 - "github.com/samuel/go-zookeeper", 9 - "github.com/BurntSushi/toml", 10 - "github.com/Sirupsen/logrus", 11 - "github.com/coreos/go-etcd", 12 - "github.com/ugorji/go" 13 - ] 14 - } 2 + { 3 + "goPackagePath": "github.com/Sirupsen/logrus", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://github.com/Sirupsen/logrus", 7 + "rev": "be52937128b38f1d99787bb476c789e2af1147f1", 8 + "sha256": "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/coreos/go-etcd", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/coreos/go-etcd", 16 + "rev": "9847b93751a5fbaf227b893d172cee0104ac6427", 17 + "sha256": "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/ugorji/go", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/ugorji/go", 25 + "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", 26 + "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "github.com/samuel/go-zookeeper", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://github.com/samuel/go-zookeeper", 34 + "rev": "5bb5cfc093ad18a28148c578f8632cfdb4d802e4", 35 + "sha256": "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/BurntSushi/toml", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/BurntSushi/toml", 43 + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", 44 + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/kelseyhightower/memkv", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/kelseyhightower/memkv", 52 + "rev": "7f9c7f36f45ba80c62fe22779ee78d9b4ca36580", 53 + "sha256": "090x65kr3gqh8fc8z4rm9hc2r0v0k7rfm5vsbmhdh21f48ixw540" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/armon/consul-api", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/armon/consul-api", 61 + "rev": "f79efe463cdbb62f6d5a55f879a63ec554eb13e5", 62 + "sha256": "1rkmzfhsazj9p2b6ywvs8yramzvxfxyvplzxi0ldvhcv04887gcp" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/garyburd/redigo", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/garyburd/redigo", 70 + "rev": "535138d7bcd717d6531c701ef5933d98b1866257", 71 + "sha256": "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v" 72 + } 73 + } 15 74 ]
+81 -14
pkgs/tools/text/platinum-searcher/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/BurntSushi/toml", 6 - "github.com/monochromegane/conflag", 7 - "github.com/monochromegane/go-home", 8 - "github.com/monochromegane/terminal", 9 - "github.com/monochromegane/go-gitignore", 10 - "github.com/shiena/ansicolor", 11 - "golang.org/x/text", 12 - "gopkg.in/yaml.v2", 13 - "github.com/jessevdk/go-flags" 14 - ] 15 - } 2 + { 3 + "goPackagePath": "gopkg.in/yaml.v2", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://gopkg.in/yaml.v2", 7 + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", 8 + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/jessevdk/go-flags", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/jessevdk/go-flags", 16 + "rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539", 17 + "sha256": "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/BurntSushi/toml", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/BurntSushi/toml", 25 + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", 26 + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" 27 + } 28 + }, 29 + { 30 + "goPackagePath": "golang.org/x/text", 31 + "fetch": { 32 + "type": "git", 33 + "url": "https://go.googlesource.com/text", 34 + "rev": "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e", 35 + "sha256": "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14" 36 + } 37 + }, 38 + { 39 + "goPackagePath": "github.com/monochromegane/conflag", 40 + "fetch": { 41 + "type": "git", 42 + "url": "https://github.com/monochromegane/conflag", 43 + "rev": "6d68c9aa4183844ddc1655481798fe4d90d483e9", 44 + "sha256": "0csfr5c8d3kbna9sqhzfp2z06wq6mc6ijja1zj2i82kzsq8534wa" 45 + } 46 + }, 47 + { 48 + "goPackagePath": "github.com/monochromegane/go-home", 49 + "fetch": { 50 + "type": "git", 51 + "url": "https://github.com/monochromegane/go-home", 52 + "rev": "25d9dda593924a11ea52e4ffbc8abdb0dbe96401", 53 + "sha256": "172chakrj22xfm0bcda4qj5zqf7lwr53pzwc3xj6wz8vd2bcxkww" 54 + } 55 + }, 56 + { 57 + "goPackagePath": "github.com/monochromegane/terminal", 58 + "fetch": { 59 + "type": "git", 60 + "url": "https://github.com/monochromegane/terminal", 61 + "rev": "2da212063ce19aed90ee5bbb00ad1ad7393d7f48", 62 + "sha256": "1rddaq9pk5q57ildms35iihghqk505gb349pb0f6k3svchay38nh" 63 + } 64 + }, 65 + { 66 + "goPackagePath": "github.com/monochromegane/go-gitignore", 67 + "fetch": { 68 + "type": "git", 69 + "url": "https://github.com/monochromegane/go-gitignore", 70 + "rev": "38717d0a108ca0e5af632cd6845ca77d45b50729", 71 + "sha256": "0r1inabpgg6sn6i47b02hcmd2p4dc1ab1mcy20mn1b2k3mpdj4b7" 72 + } 73 + }, 74 + { 75 + "goPackagePath": "github.com/shiena/ansicolor", 76 + "fetch": { 77 + "type": "git", 78 + "url": "https://github.com/shiena/ansicolor", 79 + "rev": "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b", 80 + "sha256": "0gwplb1b4fvav1vjf4b2dypy5rcp2w41vrbxkd1dsmac870cy75p" 81 + } 82 + } 16 83 ]
+27 -8
pkgs/tools/text/sift/deps.json
··· 1 1 [ 2 - { 3 - "include": "../../libs.json", 4 - "packages": [ 5 - "github.com/svent/go-flags", 6 - "github.com/svent/go-nbreader", 7 - "golang.org/x/crypto" 8 - ] 9 - } 2 + { 3 + "goPackagePath": "golang.org/x/crypto", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/crypto", 7 + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", 8 + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" 9 + } 10 + }, 11 + { 12 + "goPackagePath": "github.com/svent/go-flags", 13 + "fetch": { 14 + "type": "git", 15 + "url": "https://github.com/svent/go-flags", 16 + "rev": "4bcbad344f0318adaf7aabc16929701459009aa3", 17 + "sha256": "1gb416fgxl9gq4q6wsv3i2grq1mzbi7lvfvmfdqbxqbv9vizzh34" 18 + } 19 + }, 20 + { 21 + "goPackagePath": "github.com/svent/go-nbreader", 22 + "fetch": { 23 + "type": "git", 24 + "url": "https://github.com/svent/go-nbreader", 25 + "rev": "7cef48da76dca6a496faa7fe63e39ed665cbd219", 26 + "sha256": "0hw11jj5r3f6qwydg41nc3c6aadlbkhc1qpxra2609lis0qa9h4r" 27 + } 28 + } 10 29 ]