lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gemstash: init at 2.1.0

+397
+2
pkgs/development/tools/gemstash/Gemfile
··· 1 + source 'https://rubygems.org' 2 + gem 'gemstash'
+64
pkgs/development/tools/gemstash/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + activesupport (5.2.6.2) 5 + concurrent-ruby (~> 1.0, >= 1.0.2) 6 + i18n (>= 0.7, < 2) 7 + minitest (~> 5.1) 8 + tzinfo (~> 1.1) 9 + concurrent-ruby (1.1.9) 10 + dalli (2.7.11) 11 + faraday (0.17.5) 12 + multipart-post (>= 1.2, < 3) 13 + faraday_middleware (0.14.0) 14 + faraday (>= 0.7.4, < 1.0) 15 + gemstash (2.1.0) 16 + activesupport (>= 4.2, < 6) 17 + dalli (~> 2.7) 18 + faraday (~> 0.9) 19 + faraday_middleware (~> 0.10) 20 + lru_redux (~> 1.1) 21 + puma (~> 4.0) 22 + sequel (~> 5.0) 23 + server_health_check-rack (~> 0.1) 24 + sinatra (>= 1.4, < 3.0) 25 + sqlite3 (~> 1.3) 26 + thor (~> 0.20) 27 + i18n (1.10.0) 28 + concurrent-ruby (~> 1.0) 29 + lru_redux (1.1.0) 30 + minitest (5.15.0) 31 + multipart-post (2.1.1) 32 + mustermann (1.1.1) 33 + ruby2_keywords (~> 0.0.1) 34 + nio4r (2.5.8) 35 + puma (4.3.11) 36 + nio4r (~> 2.0) 37 + rack (2.2.3) 38 + rack-protection (2.2.0) 39 + rack 40 + ruby2_keywords (0.0.5) 41 + sequel (5.54.0) 42 + server_health_check (1.0.2) 43 + server_health_check-rack (0.1.0) 44 + server_health_check (~> 1.0, >= 1.0.1) 45 + sinatra (2.2.0) 46 + mustermann (~> 1.0) 47 + rack (~> 2.2) 48 + rack-protection (= 2.2.0) 49 + tilt (~> 2.0) 50 + sqlite3 (1.4.2) 51 + thor (0.20.3) 52 + thread_safe (0.3.6) 53 + tilt (2.0.10) 54 + tzinfo (1.2.9) 55 + thread_safe (~> 0.1) 56 + 57 + PLATFORMS 58 + ruby 59 + 60 + DEPENDENCIES 61 + gemstash 62 + 63 + BUNDLED WITH 64 + 2.1.4
+16
pkgs/development/tools/gemstash/default.nix
··· 1 + { lib, bundlerApp, bundlerUpdateScript }: 2 + 3 + bundlerApp rec { 4 + pname = "gemstash"; 5 + gemdir = ./.; 6 + exes = [ pname ]; 7 + 8 + passthru.updateScript = bundlerUpdateScript pname; 9 + 10 + meta = with lib; { 11 + description = "A cache for RubyGems.org and a private gem server"; 12 + homepage = "https://github.com/rubygems/gemstash"; 13 + license = licenses.mit; 14 + maintainers = [ maintainers.viraptor ]; 15 + }; 16 + }
+313
pkgs/development/tools/gemstash/gemset.nix
··· 1 + { 2 + activesupport = { 3 + dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; 4 + gem_platform = "ruby"; 5 + groups = ["default"]; 6 + platforms = []; 7 + source = { 8 + remotes = ["https://rubygems.org"]; 9 + sha256 = "164lmi9w96wdwd00dnly8f9dcak3blv49ymyqz30q2fdjn45c775"; 10 + type = "gem"; 11 + }; 12 + target_platform = "ruby"; 13 + version = "5.2.6.2"; 14 + }; 15 + concurrent-ruby = { 16 + gem_platform = "ruby"; 17 + groups = ["default"]; 18 + platforms = []; 19 + source = { 20 + remotes = ["https://rubygems.org"]; 21 + sha256 = "0nwad3211p7yv9sda31jmbyw6sdafzmdi2i2niaz6f0wk5nq9h0f"; 22 + type = "gem"; 23 + }; 24 + target_platform = "ruby"; 25 + version = "1.1.9"; 26 + }; 27 + dalli = { 28 + gem_platform = "ruby"; 29 + groups = ["default"]; 30 + platforms = []; 31 + source = { 32 + remotes = ["https://rubygems.org"]; 33 + sha256 = "0br39scmr187w3ifl5gsddl2fhq6ahijgw6358plqjdzrizlg764"; 34 + type = "gem"; 35 + }; 36 + target_platform = "ruby"; 37 + version = "2.7.11"; 38 + }; 39 + faraday = { 40 + dependencies = ["multipart-post"]; 41 + gem_platform = "ruby"; 42 + groups = ["default"]; 43 + platforms = []; 44 + source = { 45 + remotes = ["https://rubygems.org"]; 46 + sha256 = "0bs2lm0wd273kwq8nk1p8pk43n1wrizv4c1bdywkpcm9g2f5sp6p"; 47 + type = "gem"; 48 + }; 49 + target_platform = "ruby"; 50 + version = "0.17.5"; 51 + }; 52 + faraday_middleware = { 53 + dependencies = ["faraday"]; 54 + gem_platform = "ruby"; 55 + groups = ["default"]; 56 + platforms = []; 57 + source = { 58 + remotes = ["https://rubygems.org"]; 59 + sha256 = "1x7jgvpzl1nm7hqcnc8carq6yj1lijq74jv8pph4sb3bcpfpvcsc"; 60 + type = "gem"; 61 + }; 62 + target_platform = "ruby"; 63 + version = "0.14.0"; 64 + }; 65 + gemstash = { 66 + dependencies = ["activesupport" "dalli" "faraday" "faraday_middleware" "lru_redux" "puma" "sequel" "server_health_check-rack" "sinatra" "sqlite3" "thor"]; 67 + gem_platform = "ruby"; 68 + groups = ["default"]; 69 + platforms = []; 70 + source = { 71 + remotes = ["https://rubygems.org"]; 72 + sha256 = "0fimbc5xnsxq1g2zb7kn4qf3rp4klx7fxbigg34gr9i9apq8qfrc"; 73 + type = "gem"; 74 + }; 75 + target_platform = "ruby"; 76 + version = "2.1.0"; 77 + }; 78 + i18n = { 79 + dependencies = ["concurrent-ruby"]; 80 + gem_platform = "ruby"; 81 + groups = ["default"]; 82 + platforms = []; 83 + source = { 84 + remotes = ["https://rubygems.org"]; 85 + sha256 = "0b2qyvnk4yynlg17ymkq4g5xgr275637fhl1mjh0valw3cb1fhhg"; 86 + type = "gem"; 87 + }; 88 + target_platform = "ruby"; 89 + version = "1.10.0"; 90 + }; 91 + lru_redux = { 92 + gem_platform = "ruby"; 93 + groups = ["default"]; 94 + platforms = []; 95 + source = { 96 + remotes = ["https://rubygems.org"]; 97 + sha256 = "1yxghzg7476sivz8yyr9nkak2dlbls0b89vc2kg52k0nmg6d0wgf"; 98 + type = "gem"; 99 + }; 100 + target_platform = "ruby"; 101 + version = "1.1.0"; 102 + }; 103 + minitest = { 104 + gem_platform = "ruby"; 105 + groups = ["default"]; 106 + platforms = []; 107 + source = { 108 + remotes = ["https://rubygems.org"]; 109 + sha256 = "06xf558gid4w8lwx13jwfdafsch9maz8m0g85wnfymqj63x5nbbd"; 110 + type = "gem"; 111 + }; 112 + target_platform = "ruby"; 113 + version = "5.15.0"; 114 + }; 115 + multipart-post = { 116 + gem_platform = "ruby"; 117 + groups = ["default"]; 118 + platforms = []; 119 + source = { 120 + remotes = ["https://rubygems.org"]; 121 + sha256 = "1zgw9zlwh2a6i1yvhhc4a84ry1hv824d6g2iw2chs3k5aylpmpfj"; 122 + type = "gem"; 123 + }; 124 + target_platform = "ruby"; 125 + version = "2.1.1"; 126 + }; 127 + mustermann = { 128 + dependencies = ["ruby2_keywords"]; 129 + gem_platform = "ruby"; 130 + groups = ["default"]; 131 + platforms = []; 132 + source = { 133 + remotes = ["https://rubygems.org"]; 134 + sha256 = "0ccm54qgshr1lq3pr1dfh7gphkilc19dp63rw6fcx7460pjwy88a"; 135 + type = "gem"; 136 + }; 137 + target_platform = "ruby"; 138 + version = "1.1.1"; 139 + }; 140 + nio4r = { 141 + gem_platform = "ruby"; 142 + groups = ["default"]; 143 + platforms = []; 144 + source = { 145 + remotes = ["https://rubygems.org"]; 146 + sha256 = "0xk64wghkscs6bv2n22853k2nh39d131c6rfpnlw12mbjnnv9v1v"; 147 + type = "gem"; 148 + }; 149 + target_platform = "ruby"; 150 + version = "2.5.8"; 151 + }; 152 + puma = { 153 + dependencies = ["nio4r"]; 154 + gem_platform = "ruby"; 155 + groups = ["default"]; 156 + platforms = []; 157 + source = { 158 + remotes = ["https://rubygems.org"]; 159 + sha256 = "1xvkz9xrd1cqnlm0qac1iwwxzndx3cc17zrjncpa4lzjfwbxhsnm"; 160 + type = "gem"; 161 + }; 162 + target_platform = "ruby"; 163 + version = "4.3.11"; 164 + }; 165 + rack = { 166 + gem_platform = "ruby"; 167 + groups = ["default"]; 168 + platforms = []; 169 + source = { 170 + remotes = ["https://rubygems.org"]; 171 + sha256 = "0i5vs0dph9i5jn8dfc6aqd6njcafmb20rwqngrf759c9cvmyff16"; 172 + type = "gem"; 173 + }; 174 + target_platform = "ruby"; 175 + version = "2.2.3"; 176 + }; 177 + rack-protection = { 178 + dependencies = ["rack"]; 179 + gem_platform = "ruby"; 180 + groups = ["default"]; 181 + platforms = []; 182 + source = { 183 + remotes = ["https://rubygems.org"]; 184 + sha256 = "1hz6h6d67r217qi202qmxq2xkn3643ay3iybhl3dq3qd6j8nm3b2"; 185 + type = "gem"; 186 + }; 187 + target_platform = "ruby"; 188 + version = "2.2.0"; 189 + }; 190 + ruby2_keywords = { 191 + gem_platform = "ruby"; 192 + groups = ["default"]; 193 + platforms = []; 194 + source = { 195 + remotes = ["https://rubygems.org"]; 196 + sha256 = "1vz322p8n39hz3b4a9gkmz9y7a5jaz41zrm2ywf31dvkqm03glgz"; 197 + type = "gem"; 198 + }; 199 + target_platform = "ruby"; 200 + version = "0.0.5"; 201 + }; 202 + sequel = { 203 + gem_platform = "ruby"; 204 + groups = ["default"]; 205 + platforms = []; 206 + source = { 207 + remotes = ["https://rubygems.org"]; 208 + sha256 = "1wzb16vyslr7bpy7g5k2m35yz90bpf12f3pzj5w6icf1vldnc3nf"; 209 + type = "gem"; 210 + }; 211 + target_platform = "ruby"; 212 + version = "5.54.0"; 213 + }; 214 + server_health_check = { 215 + gem_platform = "ruby"; 216 + groups = ["default"]; 217 + platforms = []; 218 + source = { 219 + remotes = ["https://rubygems.org"]; 220 + sha256 = "06chz92parchhj1457lf5lbj3hrmvqpq6mfskxcnj5f4qa14n5wd"; 221 + type = "gem"; 222 + }; 223 + target_platform = "ruby"; 224 + version = "1.0.2"; 225 + }; 226 + server_health_check-rack = { 227 + dependencies = ["server_health_check"]; 228 + gem_platform = "ruby"; 229 + groups = ["default"]; 230 + platforms = []; 231 + source = { 232 + remotes = ["https://rubygems.org"]; 233 + sha256 = "0cgqr94x18f60n27sk9lgg471c6vk6qy132z7i1ppp32kvmjfphs"; 234 + type = "gem"; 235 + }; 236 + target_platform = "ruby"; 237 + version = "0.1.0"; 238 + }; 239 + sinatra = { 240 + dependencies = ["mustermann" "rack" "rack-protection" "tilt"]; 241 + gem_platform = "ruby"; 242 + groups = ["default"]; 243 + platforms = []; 244 + source = { 245 + remotes = ["https://rubygems.org"]; 246 + sha256 = "1x3rci7k30g96y307hvglpdgm3f7nga3k3n4i8n1v2xxx290800y"; 247 + type = "gem"; 248 + }; 249 + target_platform = "ruby"; 250 + version = "2.2.0"; 251 + }; 252 + sqlite3 = { 253 + gem_platform = "ruby"; 254 + groups = ["default"]; 255 + platforms = []; 256 + source = { 257 + remotes = ["https://rubygems.org"]; 258 + sha256 = "0lja01cp9xd5m6vmx99zwn4r7s97r1w5cb76gqd8xhbm1wxyzf78"; 259 + type = "gem"; 260 + }; 261 + target_platform = "ruby"; 262 + version = "1.4.2"; 263 + }; 264 + thor = { 265 + gem_platform = "ruby"; 266 + groups = ["default"]; 267 + platforms = []; 268 + source = { 269 + remotes = ["https://rubygems.org"]; 270 + sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29"; 271 + type = "gem"; 272 + }; 273 + target_platform = "ruby"; 274 + version = "0.20.3"; 275 + }; 276 + thread_safe = { 277 + gem_platform = "ruby"; 278 + groups = ["default"]; 279 + platforms = []; 280 + source = { 281 + remotes = ["https://rubygems.org"]; 282 + sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy"; 283 + type = "gem"; 284 + }; 285 + target_platform = "ruby"; 286 + version = "0.3.6"; 287 + }; 288 + tilt = { 289 + gem_platform = "ruby"; 290 + groups = ["default"]; 291 + platforms = []; 292 + source = { 293 + remotes = ["https://rubygems.org"]; 294 + sha256 = "0rn8z8hda4h41a64l0zhkiwz2vxw9b1nb70gl37h1dg2k874yrlv"; 295 + type = "gem"; 296 + }; 297 + target_platform = "ruby"; 298 + version = "2.0.10"; 299 + }; 300 + tzinfo = { 301 + dependencies = ["thread_safe"]; 302 + gem_platform = "ruby"; 303 + groups = ["default"]; 304 + platforms = []; 305 + source = { 306 + remotes = ["https://rubygems.org"]; 307 + sha256 = "0zwqqh6138s8b321fwvfbywxy00lw1azw4ql3zr0xh1aqxf8cnvj"; 308 + type = "gem"; 309 + }; 310 + target_platform = "ruby"; 311 + version = "1.2.9"; 312 + }; 313 + }
+2
pkgs/top-level/all-packages.nix
··· 5465 5465 5466 5466 frr = callPackage ../servers/frr { }; 5467 5467 5468 + gemstash = callPackage ../development/tools/gemstash { }; 5469 + 5468 5470 hmetis = pkgsi686Linux.callPackage ../applications/science/math/hmetis { }; 5469 5471 5470 5472 libbsd = callPackage ../development/libraries/libbsd { };