lol

nix-store-gcs-proxy: init at 0.1.0 (#68139)

* nix-store-gcs-proxy: init at 0.1.0

Co-Authored-By: Florian Klink <flokli@flokli.de>

authored by zimbatm.tngl.sh

Florian Klink and committed by
Florian Klink
406e29ff 5db81b64

+839
+24
pkgs/tools/nix/nix-store-gcs-proxy/default.nix
··· 1 + { lib, buildGoPackage, fetchFromGitHub }: 2 + buildGoPackage rec { 3 + pname = "nix-store-gcs-proxy"; 4 + version = "0.1.0"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "tweag"; 8 + repo = "nix-store-gcs-proxy"; 9 + rev = "v${version}"; 10 + sha256 = "0804p65px4wd7gzxggpdxsazkd1hbz1p15zzaxf9ygc6sh26ncln"; 11 + }; 12 + 13 + goPackagePath = "github.com/tweag/nix-store-gcs-proxy"; 14 + 15 + goDeps = ./deps.nix; 16 + 17 + meta = { 18 + description = "A HTTP nix store that proxies requests to Google Storage"; 19 + homepage = "https://github.com/tweag/nix-store-gcs-proxy"; 20 + license = lib.licenses.asl20; 21 + maintainers = with lib.maintainers; [ zimbatm ]; 22 + }; 23 + } 24 +
+813
pkgs/tools/nix/nix-store-gcs-proxy/deps.nix
··· 1 + # file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix) 2 + [ 3 + { 4 + goPackagePath = "cloud.google.com/go"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://code.googlesource.com/gocloud"; 8 + rev = "v0.37.2"; 9 + sha256 = "1w6crdxy9vzd8vm672hng22spwld6d60z58kbr28dkiiz694wqvs"; 10 + }; 11 + } 12 + { 13 + goPackagePath = "github.com/BurntSushi/toml"; 14 + fetch = { 15 + type = "git"; 16 + url = "https://github.com/BurntSushi/toml"; 17 + rev = "v0.3.1"; 18 + sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6"; 19 + }; 20 + } 21 + { 22 + goPackagePath = "github.com/Shopify/sarama"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://github.com/Shopify/sarama"; 26 + rev = "v1.19.0"; 27 + sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z"; 28 + }; 29 + } 30 + { 31 + goPackagePath = "github.com/Shopify/toxiproxy"; 32 + fetch = { 33 + type = "git"; 34 + url = "https://github.com/Shopify/toxiproxy"; 35 + rev = "v2.1.4"; 36 + sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig"; 37 + }; 38 + } 39 + { 40 + goPackagePath = "github.com/alecthomas/template"; 41 + fetch = { 42 + type = "git"; 43 + url = "https://github.com/alecthomas/template"; 44 + rev = "a0175ee3bccc"; 45 + sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"; 46 + }; 47 + } 48 + { 49 + goPackagePath = "github.com/alecthomas/units"; 50 + fetch = { 51 + type = "git"; 52 + url = "https://github.com/alecthomas/units"; 53 + rev = "2efee857e7cf"; 54 + sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; 55 + }; 56 + } 57 + { 58 + goPackagePath = "github.com/anmitsu/go-shlex"; 59 + fetch = { 60 + type = "git"; 61 + url = "https://github.com/anmitsu/go-shlex"; 62 + rev = "648efa622239"; 63 + sha256 = "10rgdp5d106iisgz25ic8k6f44s9adh4sjh6fyxq9ccm21gw49b7"; 64 + }; 65 + } 66 + { 67 + goPackagePath = "github.com/apache/thrift"; 68 + fetch = { 69 + type = "git"; 70 + url = "https://github.com/apache/thrift"; 71 + rev = "v0.12.0"; 72 + sha256 = "0g2g61rs189nimg3631wxfwdx12dsdz70qvncczlyvn34pcj7yby"; 73 + }; 74 + } 75 + { 76 + goPackagePath = "github.com/beorn7/perks"; 77 + fetch = { 78 + type = "git"; 79 + url = "https://github.com/beorn7/perks"; 80 + rev = "3a771d992973"; 81 + sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"; 82 + }; 83 + } 84 + { 85 + goPackagePath = "github.com/bradfitz/go-smtpd"; 86 + fetch = { 87 + type = "git"; 88 + url = "https://github.com/bradfitz/go-smtpd"; 89 + rev = "deb6d6237625"; 90 + sha256 = "1i33brqd44h0a9hbdnclka0hfg0f6qi5xy23f0ap9yixkhj4k9p6"; 91 + }; 92 + } 93 + { 94 + goPackagePath = "github.com/client9/misspell"; 95 + fetch = { 96 + type = "git"; 97 + url = "https://github.com/client9/misspell"; 98 + rev = "v0.3.4"; 99 + sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs"; 100 + }; 101 + } 102 + { 103 + goPackagePath = "github.com/coreos/go-systemd"; 104 + fetch = { 105 + type = "git"; 106 + url = "https://github.com/coreos/go-systemd"; 107 + rev = "c6f51f82210d"; 108 + sha256 = "1vnccmnkjl6n539l4cliz6sznpqn6igf5v7mbmsgahb838742clb"; 109 + }; 110 + } 111 + { 112 + goPackagePath = "github.com/davecgh/go-spew"; 113 + fetch = { 114 + type = "git"; 115 + url = "https://github.com/davecgh/go-spew"; 116 + rev = "v1.1.1"; 117 + sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"; 118 + }; 119 + } 120 + { 121 + goPackagePath = "github.com/eapache/go-resiliency"; 122 + fetch = { 123 + type = "git"; 124 + url = "https://github.com/eapache/go-resiliency"; 125 + rev = "v1.1.0"; 126 + sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx"; 127 + }; 128 + } 129 + { 130 + goPackagePath = "github.com/eapache/go-xerial-snappy"; 131 + fetch = { 132 + type = "git"; 133 + url = "https://github.com/eapache/go-xerial-snappy"; 134 + rev = "776d5712da21"; 135 + sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d"; 136 + }; 137 + } 138 + { 139 + goPackagePath = "github.com/eapache/queue"; 140 + fetch = { 141 + type = "git"; 142 + url = "https://github.com/eapache/queue"; 143 + rev = "v1.1.0"; 144 + sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg"; 145 + }; 146 + } 147 + { 148 + goPackagePath = "github.com/flynn/go-shlex"; 149 + fetch = { 150 + type = "git"; 151 + url = "https://github.com/flynn/go-shlex"; 152 + rev = "3f9db97f8568"; 153 + sha256 = "1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia"; 154 + }; 155 + } 156 + { 157 + goPackagePath = "github.com/fsnotify/fsnotify"; 158 + fetch = { 159 + type = "git"; 160 + url = "https://github.com/fsnotify/fsnotify"; 161 + rev = "v1.4.7"; 162 + sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; 163 + }; 164 + } 165 + { 166 + goPackagePath = "github.com/gliderlabs/ssh"; 167 + fetch = { 168 + type = "git"; 169 + url = "https://github.com/gliderlabs/ssh"; 170 + rev = "v0.1.1"; 171 + sha256 = "0bylkc7yg8bxxffhchikcnzwli5n95cfmbji6v2a4mn1h5n36mdm"; 172 + }; 173 + } 174 + { 175 + goPackagePath = "github.com/go-kit/kit"; 176 + fetch = { 177 + type = "git"; 178 + url = "https://github.com/go-kit/kit"; 179 + rev = "v0.8.0"; 180 + sha256 = "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0"; 181 + }; 182 + } 183 + { 184 + goPackagePath = "github.com/go-logfmt/logfmt"; 185 + fetch = { 186 + type = "git"; 187 + url = "https://github.com/go-logfmt/logfmt"; 188 + rev = "v0.3.0"; 189 + sha256 = "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9"; 190 + }; 191 + } 192 + { 193 + goPackagePath = "github.com/go-stack/stack"; 194 + fetch = { 195 + type = "git"; 196 + url = "https://github.com/go-stack/stack"; 197 + rev = "v1.8.0"; 198 + sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v"; 199 + }; 200 + } 201 + { 202 + goPackagePath = "github.com/gogo/protobuf"; 203 + fetch = { 204 + type = "git"; 205 + url = "https://github.com/gogo/protobuf"; 206 + rev = "v1.2.0"; 207 + sha256 = "1c3y5m08mvrgvlw0kb9pldh3kkqcj99pa8gqmk1g3hp8ih3b2dv0"; 208 + }; 209 + } 210 + { 211 + goPackagePath = "github.com/golang/glog"; 212 + fetch = { 213 + type = "git"; 214 + url = "https://github.com/golang/glog"; 215 + rev = "23def4e6c14b"; 216 + sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30"; 217 + }; 218 + } 219 + { 220 + goPackagePath = "github.com/golang/mock"; 221 + fetch = { 222 + type = "git"; 223 + url = "https://github.com/golang/mock"; 224 + rev = "v1.2.0"; 225 + sha256 = "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg"; 226 + }; 227 + } 228 + { 229 + goPackagePath = "github.com/golang/protobuf"; 230 + fetch = { 231 + type = "git"; 232 + url = "https://github.com/golang/protobuf"; 233 + rev = "v1.2.0"; 234 + sha256 = "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab"; 235 + }; 236 + } 237 + { 238 + goPackagePath = "github.com/golang/snappy"; 239 + fetch = { 240 + type = "git"; 241 + url = "https://github.com/golang/snappy"; 242 + rev = "2e65f85255db"; 243 + sha256 = "05w6mpc4qcy0pv8a2bzng8nf4s5rf5phfang4jwy9rgf808q0nxf"; 244 + }; 245 + } 246 + { 247 + goPackagePath = "github.com/google/btree"; 248 + fetch = { 249 + type = "git"; 250 + url = "https://github.com/google/btree"; 251 + rev = "4030bb1f1f0c"; 252 + sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6"; 253 + }; 254 + } 255 + { 256 + goPackagePath = "github.com/google/go-cmp"; 257 + fetch = { 258 + type = "git"; 259 + url = "https://github.com/google/go-cmp"; 260 + rev = "v0.2.0"; 261 + sha256 = "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds"; 262 + }; 263 + } 264 + { 265 + goPackagePath = "github.com/google/go-github"; 266 + fetch = { 267 + type = "git"; 268 + url = "https://github.com/google/go-github"; 269 + rev = "v17.0.0"; 270 + sha256 = "1kvw95l77a5n5rgal9n1xjh58zxb3a40ij1j722b1h4z8yg9jhg4"; 271 + }; 272 + } 273 + { 274 + goPackagePath = "github.com/google/go-querystring"; 275 + fetch = { 276 + type = "git"; 277 + url = "https://github.com/google/go-querystring"; 278 + rev = "v1.0.0"; 279 + sha256 = "0xl12bqyvmn4xcnf8p9ksj9rmnr7s40pvppsdmy8n9bzw1db0iwz"; 280 + }; 281 + } 282 + { 283 + goPackagePath = "github.com/google/martian"; 284 + fetch = { 285 + type = "git"; 286 + url = "https://github.com/google/martian"; 287 + rev = "v2.1.0"; 288 + sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp"; 289 + }; 290 + } 291 + { 292 + goPackagePath = "github.com/google/pprof"; 293 + fetch = { 294 + type = "git"; 295 + url = "https://github.com/google/pprof"; 296 + rev = "3ea8567a2e57"; 297 + sha256 = "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c"; 298 + }; 299 + } 300 + { 301 + goPackagePath = "github.com/googleapis/gax-go"; 302 + fetch = { 303 + type = "git"; 304 + url = "https://github.com/googleapis/gax-go"; 305 + rev = "v2.0.4"; 306 + sha256 = "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm"; 307 + }; 308 + } 309 + { 310 + goPackagePath = "github.com/gorilla/context"; 311 + fetch = { 312 + type = "git"; 313 + url = "https://github.com/gorilla/context"; 314 + rev = "v1.1.1"; 315 + sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4"; 316 + }; 317 + } 318 + { 319 + goPackagePath = "github.com/gorilla/mux"; 320 + fetch = { 321 + type = "git"; 322 + url = "https://github.com/gorilla/mux"; 323 + rev = "v1.6.2"; 324 + sha256 = "0pvzm23hklxysspnz52mih6h1q74vfrdhjfm1l3sa9r8hhqmmld2"; 325 + }; 326 + } 327 + { 328 + goPackagePath = "github.com/gregjones/httpcache"; 329 + fetch = { 330 + type = "git"; 331 + url = "https://github.com/gregjones/httpcache"; 332 + rev = "9cad4c3443a7"; 333 + sha256 = "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s"; 334 + }; 335 + } 336 + { 337 + goPackagePath = "github.com/hashicorp/golang-lru"; 338 + fetch = { 339 + type = "git"; 340 + url = "https://github.com/hashicorp/golang-lru"; 341 + rev = "v0.5.0"; 342 + sha256 = "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f"; 343 + }; 344 + } 345 + { 346 + goPackagePath = "github.com/hpcloud/tail"; 347 + fetch = { 348 + type = "git"; 349 + url = "https://github.com/hpcloud/tail"; 350 + rev = "v1.0.0"; 351 + sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0"; 352 + }; 353 + } 354 + { 355 + goPackagePath = "github.com/jellevandenhooff/dkim"; 356 + fetch = { 357 + type = "git"; 358 + url = "https://github.com/jellevandenhooff/dkim"; 359 + rev = "f50fe3d243e1"; 360 + sha256 = "0qf5pypxfpciivj0v728i24rfjwhnwm07945mj6p3cw4gdphqhm0"; 361 + }; 362 + } 363 + { 364 + goPackagePath = "github.com/jstemmer/go-junit-report"; 365 + fetch = { 366 + type = "git"; 367 + url = "https://github.com/jstemmer/go-junit-report"; 368 + rev = "af01ea7f8024"; 369 + sha256 = "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s"; 370 + }; 371 + } 372 + { 373 + goPackagePath = "github.com/julienschmidt/httprouter"; 374 + fetch = { 375 + type = "git"; 376 + url = "https://github.com/julienschmidt/httprouter"; 377 + rev = "v1.2.0"; 378 + sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666"; 379 + }; 380 + } 381 + { 382 + goPackagePath = "github.com/konsorten/go-windows-terminal-sequences"; 383 + fetch = { 384 + type = "git"; 385 + url = "https://github.com/konsorten/go-windows-terminal-sequences"; 386 + rev = "v1.0.1"; 387 + sha256 = "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip"; 388 + }; 389 + } 390 + { 391 + goPackagePath = "github.com/kr/logfmt"; 392 + fetch = { 393 + type = "git"; 394 + url = "https://github.com/kr/logfmt"; 395 + rev = "b84e30acd515"; 396 + sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9"; 397 + }; 398 + } 399 + { 400 + goPackagePath = "github.com/kr/pty"; 401 + fetch = { 402 + type = "git"; 403 + url = "https://github.com/kr/pty"; 404 + rev = "v1.1.3"; 405 + sha256 = "0knzlvndfgjm2k23vhp2xj1cv3fm31vbg5b20gdl1vnxk7rh549h"; 406 + }; 407 + } 408 + { 409 + goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; 410 + fetch = { 411 + type = "git"; 412 + url = "https://github.com/matttproud/golang_protobuf_extensions"; 413 + rev = "v1.0.1"; 414 + sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; 415 + }; 416 + } 417 + { 418 + goPackagePath = "github.com/mwitkow/go-conntrack"; 419 + fetch = { 420 + type = "git"; 421 + url = "https://github.com/mwitkow/go-conntrack"; 422 + rev = "cc309e4a2223"; 423 + sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf"; 424 + }; 425 + } 426 + { 427 + goPackagePath = "github.com/onsi/ginkgo"; 428 + fetch = { 429 + type = "git"; 430 + url = "https://github.com/onsi/ginkgo"; 431 + rev = "v1.7.0"; 432 + sha256 = "14wgpdrvpc35rdz3859bz53sc1g4vpr1fysy15wy3ff9gmqs14yg"; 433 + }; 434 + } 435 + { 436 + goPackagePath = "github.com/onsi/gomega"; 437 + fetch = { 438 + type = "git"; 439 + url = "https://github.com/onsi/gomega"; 440 + rev = "v1.4.3"; 441 + sha256 = "1c8rqg5i2hz3snmq7s41yar1zjnzilb0fyiyhkg83v97afcfx79v"; 442 + }; 443 + } 444 + { 445 + goPackagePath = "github.com/openzipkin/zipkin-go"; 446 + fetch = { 447 + type = "git"; 448 + url = "https://github.com/openzipkin/zipkin-go"; 449 + rev = "v0.1.6"; 450 + sha256 = "0fyf69w66khj3dxdpqydwjdhhhyhlh3caxa5ybnd1h2f6b5gbvvv"; 451 + }; 452 + } 453 + { 454 + goPackagePath = "github.com/pierrec/lz4"; 455 + fetch = { 456 + type = "git"; 457 + url = "https://github.com/pierrec/lz4"; 458 + rev = "v2.0.5"; 459 + sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p"; 460 + }; 461 + } 462 + { 463 + goPackagePath = "github.com/pkg/errors"; 464 + fetch = { 465 + type = "git"; 466 + url = "https://github.com/pkg/errors"; 467 + rev = "v0.8.0"; 468 + sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5"; 469 + }; 470 + } 471 + { 472 + goPackagePath = "github.com/pmezard/go-difflib"; 473 + fetch = { 474 + type = "git"; 475 + url = "https://github.com/pmezard/go-difflib"; 476 + rev = "v1.0.0"; 477 + sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; 478 + }; 479 + } 480 + { 481 + goPackagePath = "github.com/prometheus/client_golang"; 482 + fetch = { 483 + type = "git"; 484 + url = "https://github.com/prometheus/client_golang"; 485 + rev = "3c4408c8b829"; 486 + sha256 = "06d9cxxxkglks8fpfg3spxscyrq4lw7fckm4p6f0wshq65am2lxw"; 487 + }; 488 + } 489 + { 490 + goPackagePath = "github.com/prometheus/client_model"; 491 + fetch = { 492 + type = "git"; 493 + url = "https://github.com/prometheus/client_model"; 494 + rev = "56726106282f"; 495 + sha256 = "19y4qs9mkxiiab5sh3b7cccjpl3xbp6sy8812ig9f1zg8vzkzj7j"; 496 + }; 497 + } 498 + { 499 + goPackagePath = "github.com/prometheus/common"; 500 + fetch = { 501 + type = "git"; 502 + url = "https://github.com/prometheus/common"; 503 + rev = "v0.2.0"; 504 + sha256 = "02kym6lcfnlq23qbv277jr0q1n7jj0r14gqg93c7wn7gc44jv3vp"; 505 + }; 506 + } 507 + { 508 + goPackagePath = "github.com/prometheus/procfs"; 509 + fetch = { 510 + type = "git"; 511 + url = "https://github.com/prometheus/procfs"; 512 + rev = "bf6a532e95b1"; 513 + sha256 = "0k65i2ikf3jp6863mpc1raf928i78r8jd7zn9djx6f4izls6l6j1"; 514 + }; 515 + } 516 + { 517 + goPackagePath = "github.com/rcrowley/go-metrics"; 518 + fetch = { 519 + type = "git"; 520 + url = "https://github.com/rcrowley/go-metrics"; 521 + rev = "3113b8401b8a"; 522 + sha256 = "1m5q5dsvkqz809aag6dyan74wdrp69g2mb9killbv7z4ls2mlfr3"; 523 + }; 524 + } 525 + { 526 + goPackagePath = "github.com/sirupsen/logrus"; 527 + fetch = { 528 + type = "git"; 529 + url = "https://github.com/sirupsen/logrus"; 530 + rev = "v1.2.0"; 531 + sha256 = "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg"; 532 + }; 533 + } 534 + { 535 + goPackagePath = "github.com/stretchr/objx"; 536 + fetch = { 537 + type = "git"; 538 + url = "https://github.com/stretchr/objx"; 539 + rev = "v0.1.1"; 540 + sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls"; 541 + }; 542 + } 543 + { 544 + goPackagePath = "github.com/stretchr/testify"; 545 + fetch = { 546 + type = "git"; 547 + url = "https://github.com/stretchr/testify"; 548 + rev = "v1.2.2"; 549 + sha256 = "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs"; 550 + }; 551 + } 552 + { 553 + goPackagePath = "github.com/tarm/serial"; 554 + fetch = { 555 + type = "git"; 556 + url = "https://github.com/tarm/serial"; 557 + rev = "98f6abe2eb07"; 558 + sha256 = "1yj4jiv2f3x3iawxdflrlmdan0k9xsbnccgc9yz658rmif1ag3pb"; 559 + }; 560 + } 561 + { 562 + goPackagePath = "github.com/urfave/cli"; 563 + fetch = { 564 + type = "git"; 565 + url = "https://github.com/urfave/cli"; 566 + rev = "v1.20.0"; 567 + sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj"; 568 + }; 569 + } 570 + { 571 + goPackagePath = "github.com/urfave/negroni"; 572 + fetch = { 573 + type = "git"; 574 + url = "https://github.com/urfave/negroni"; 575 + rev = "v1.0.0"; 576 + sha256 = "1gp6j74adi1cn8fq5v3wzlzhwl4zg43n2746m4fzdcdimihk3ccp"; 577 + }; 578 + } 579 + { 580 + goPackagePath = "go.opencensus.io"; 581 + fetch = { 582 + type = "git"; 583 + url = "https://github.com/census-instrumentation/opencensus-go"; 584 + rev = "v0.19.2"; 585 + sha256 = "1vlik5xwwrhcyy9yx2yc3y02y6hp9q80591hbhncv9c8wwfg9gjc"; 586 + }; 587 + } 588 + { 589 + goPackagePath = "go4.org"; 590 + fetch = { 591 + type = "git"; 592 + url = "https://github.com/go4org/go4"; 593 + rev = "417644f6feb5"; 594 + sha256 = "013cvdg4fj15l9xg84br0vkb2d99j04s5b4g7zssqhng8dkwgr37"; 595 + }; 596 + } 597 + { 598 + goPackagePath = "golang.org/x/build"; 599 + fetch = { 600 + type = "git"; 601 + url = "https://go.googlesource.com/build"; 602 + rev = "5284462c4bec"; 603 + sha256 = "0w649zbs4n64b6rjx92hy7vc1y9sv4khhk5igbz8w7sxvz8778ij"; 604 + }; 605 + } 606 + { 607 + goPackagePath = "golang.org/x/crypto"; 608 + fetch = { 609 + type = "git"; 610 + url = "https://go.googlesource.com/crypto"; 611 + rev = "c2843e01d9a2"; 612 + sha256 = "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r"; 613 + }; 614 + } 615 + { 616 + goPackagePath = "golang.org/x/exp"; 617 + fetch = { 618 + type = "git"; 619 + url = "https://go.googlesource.com/exp"; 620 + rev = "509febef88a4"; 621 + sha256 = "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q"; 622 + }; 623 + } 624 + { 625 + goPackagePath = "golang.org/x/lint"; 626 + fetch = { 627 + type = "git"; 628 + url = "https://go.googlesource.com/lint"; 629 + rev = "5614ed5bae6f"; 630 + sha256 = "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx"; 631 + }; 632 + } 633 + { 634 + goPackagePath = "golang.org/x/net"; 635 + fetch = { 636 + type = "git"; 637 + url = "https://go.googlesource.com/net"; 638 + rev = "d8887717615a"; 639 + sha256 = "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163"; 640 + }; 641 + } 642 + { 643 + goPackagePath = "golang.org/x/oauth2"; 644 + fetch = { 645 + type = "git"; 646 + url = "https://go.googlesource.com/oauth2"; 647 + rev = "e64efc72b421"; 648 + sha256 = "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m"; 649 + }; 650 + } 651 + { 652 + goPackagePath = "golang.org/x/perf"; 653 + fetch = { 654 + type = "git"; 655 + url = "https://go.googlesource.com/perf"; 656 + rev = "6e6d33e29852"; 657 + sha256 = "1cyiy459bkjqnzgk051lsksz46hdkjc34q33zf946kiv3hilp1v2"; 658 + }; 659 + } 660 + { 661 + goPackagePath = "golang.org/x/sync"; 662 + fetch = { 663 + type = "git"; 664 + url = "https://go.googlesource.com/sync"; 665 + rev = "e225da77a7e6"; 666 + sha256 = "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p"; 667 + }; 668 + } 669 + { 670 + goPackagePath = "golang.org/x/sys"; 671 + fetch = { 672 + type = "git"; 673 + url = "https://go.googlesource.com/sys"; 674 + rev = "d0b11bdaac8a"; 675 + sha256 = "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl"; 676 + }; 677 + } 678 + { 679 + goPackagePath = "golang.org/x/text"; 680 + fetch = { 681 + type = "git"; 682 + url = "https://go.googlesource.com/text"; 683 + rev = "17ff2d5776d2"; 684 + sha256 = "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj"; 685 + }; 686 + } 687 + { 688 + goPackagePath = "golang.org/x/time"; 689 + fetch = { 690 + type = "git"; 691 + url = "https://go.googlesource.com/time"; 692 + rev = "85acf8d2951c"; 693 + sha256 = "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc"; 694 + }; 695 + } 696 + { 697 + goPackagePath = "golang.org/x/tools"; 698 + fetch = { 699 + type = "git"; 700 + url = "https://go.googlesource.com/tools"; 701 + rev = "e65039ee4138"; 702 + sha256 = "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx"; 703 + }; 704 + } 705 + { 706 + goPackagePath = "google.golang.org/api"; 707 + fetch = { 708 + type = "git"; 709 + url = "https://code.googlesource.com/google-api-go-client"; 710 + rev = "v0.3.0"; 711 + sha256 = "1vvrhiq2zs677iz2j6s9iv4q3j3nhxz5ci9y4zrak248lrdln0zk"; 712 + }; 713 + } 714 + { 715 + goPackagePath = "google.golang.org/appengine"; 716 + fetch = { 717 + type = "git"; 718 + url = "https://github.com/golang/appengine"; 719 + rev = "v1.4.0"; 720 + sha256 = "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn"; 721 + }; 722 + } 723 + { 724 + goPackagePath = "google.golang.org/genproto"; 725 + fetch = { 726 + type = "git"; 727 + url = "https://github.com/google/go-genproto"; 728 + rev = "5fe7a883aa19"; 729 + sha256 = "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs"; 730 + }; 731 + } 732 + { 733 + goPackagePath = "google.golang.org/grpc"; 734 + fetch = { 735 + type = "git"; 736 + url = "https://github.com/grpc/grpc-go"; 737 + rev = "v1.19.0"; 738 + sha256 = "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v"; 739 + }; 740 + } 741 + { 742 + goPackagePath = "gopkg.in/alecthomas/kingpin.v2"; 743 + fetch = { 744 + type = "git"; 745 + url = "https://gopkg.in/alecthomas/kingpin.v2"; 746 + rev = "v2.2.6"; 747 + sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; 748 + }; 749 + } 750 + { 751 + goPackagePath = "gopkg.in/check.v1"; 752 + fetch = { 753 + type = "git"; 754 + url = "https://gopkg.in/check.v1"; 755 + rev = "788fd7840127"; 756 + sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a"; 757 + }; 758 + } 759 + { 760 + goPackagePath = "gopkg.in/fsnotify.v1"; 761 + fetch = { 762 + type = "git"; 763 + url = "https://gopkg.in/fsnotify.v1"; 764 + rev = "v1.4.7"; 765 + sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; 766 + }; 767 + } 768 + { 769 + goPackagePath = "gopkg.in/inf.v0"; 770 + fetch = { 771 + type = "git"; 772 + url = "https://gopkg.in/inf.v0"; 773 + rev = "v0.9.1"; 774 + sha256 = "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng"; 775 + }; 776 + } 777 + { 778 + goPackagePath = "gopkg.in/tomb.v1"; 779 + fetch = { 780 + type = "git"; 781 + url = "https://gopkg.in/tomb.v1"; 782 + rev = "dd632973f1e7"; 783 + sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv"; 784 + }; 785 + } 786 + { 787 + goPackagePath = "gopkg.in/yaml.v2"; 788 + fetch = { 789 + type = "git"; 790 + url = "https://gopkg.in/yaml.v2"; 791 + rev = "v2.2.2"; 792 + sha256 = "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa"; 793 + }; 794 + } 795 + { 796 + goPackagePath = "grpc.go4.org"; 797 + fetch = { 798 + type = "git"; 799 + url = "https://github.com/go4org/grpc"; 800 + rev = "11d0a25b4919"; 801 + sha256 = "1d6akp2b3aa2viwbikc3jndhiljgjj87r4z7mg5b03f97f2wmz4f"; 802 + }; 803 + } 804 + { 805 + goPackagePath = "honnef.co/go/tools"; 806 + fetch = { 807 + type = "git"; 808 + url = "https://github.com/dominikh/go-tools"; 809 + rev = "3f1c8253044a"; 810 + sha256 = "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h"; 811 + }; 812 + } 813 + ]
+2
pkgs/top-level/all-packages.nix
··· 24831 24831 24832 24832 verifpal = callPackage ../tools/security/verifpal {}; 24833 24833 24834 + nix-store-gcs-proxy = callPackage ../tools/nix/nix-store-gcs-proxy {}; 24835 + 24834 24836 }