Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

flake and lock update

+39 -13
+12 -12
flake.lock
··· 207 207 ] 208 208 }, 209 209 "locked": { 210 - "lastModified": 1714566998, 211 - "narHash": "sha256-ob3Mqgu9S1LykFK6etOHDkwmPqufU8auB1bjBvRJS8o=", 210 + "lastModified": 1715215894, 211 + "narHash": "sha256-5xaE30xD585isq/KDfqctHR+9pe78PLaQiBtmXJMxGg=", 212 212 "owner": "elixir-tools", 213 213 "repo": "next-ls", 214 - "rev": "7f2f4f413348dc33d55ea17c2473007518627320", 214 + "rev": "251d7b8c412feede31ff61b9563c92afe96b518d", 215 215 "type": "github" 216 216 }, 217 217 "original": { ··· 266 266 }, 267 267 "nixpkgs_2": { 268 268 "locked": { 269 - "lastModified": 1714635257, 270 - "narHash": "sha256-4cPymbty65RvF1DWQfc+Bc8B233A1BWxJnNULJKQ1EY=", 269 + "lastModified": 1715087517, 270 + "narHash": "sha256-CLU5Tsg24Ke4+7sH8azHWXKd0CFd4mhLWfhYgUiDBpQ=", 271 271 "owner": "nixos", 272 272 "repo": "nixpkgs", 273 - "rev": "63c3a29ca82437c87573e4c6919b09a24ea61b0f", 273 + "rev": "b211b392b8486ee79df6cdfb1157ad2133427a29", 274 274 "type": "github" 275 275 }, 276 276 "original": { ··· 282 282 }, 283 283 "process-compose-flake": { 284 284 "locked": { 285 - "lastModified": 1713920695, 286 - "narHash": "sha256-pQIg3wrNBDdRiuhcVC8DFmTXK8GHtR+iV+5Gvsozx5s=", 285 + "lastModified": 1715063745, 286 + "narHash": "sha256-kO8gcRHfuKIlsGmFoHUF4lD3CfrRBymIlG2R3OHBEjQ=", 287 287 "owner": "Platonic-Systems", 288 288 "repo": "process-compose-flake", 289 - "rev": "ee8cd505f08f6cd691930e70987a306b7726851b", 289 + "rev": "32c069e7ef436b4325ee36503cd02b2863eede53", 290 290 "type": "github" 291 291 }, 292 292 "original": { ··· 316 316 ] 317 317 }, 318 318 "locked": { 319 - "lastModified": 1714875369, 320 - "narHash": "sha256-dyyJEHKbnz2sZcz9yVxOCE/085covNljWKeTCIcBfL0=", 319 + "lastModified": 1715221036, 320 + "narHash": "sha256-81EKOdlmT/4hZpImRlvMVPgmCcJYZjwlWbJese/XqUw=", 321 321 "owner": "oxalica", 322 322 "repo": "rust-overlay", 323 - "rev": "35cc508a9de1c971ce1dc610dec1ba75f66c6004", 323 + "rev": "5c4bc8a0a70093a31a12509c5653c147f2310bd2", 324 324 "type": "github" 325 325 }, 326 326 "original": {
+27 -1
nix/mix.nix
··· 31 31 sha256 = "f2f6acbf0a0e8e90a6168c01cfa746430d92332e008a435ad897aba70c722656"; 32 32 }; 33 33 34 - beamDeps = [ ash jason json_xema plug ]; 34 + beamDeps = [ ash jason json_xema open_api_spex plug ]; 35 35 }; 36 36 37 37 ash_phoenix = buildMix rec { ··· 502 502 beamDeps = []; 503 503 }; 504 504 505 + open_api_spex = buildMix rec { 506 + name = "open_api_spex"; 507 + version = "3.19.0"; 508 + 509 + src = fetchHex { 510 + pkg = "open_api_spex"; 511 + version = "${version}"; 512 + sha256 = "7e06db4a6a20fb765677aabad84494b950765f0d734444ded79f790638ff4ded"; 513 + }; 514 + 515 + beamDeps = [ jason plug ]; 516 + }; 517 + 505 518 parse_trans = buildRebar3 rec { 506 519 name = "parse_trans"; 507 520 version = "3.4.1"; ··· 669 682 }; 670 683 671 684 beamDeps = [ libgraph spark splode telemetry ]; 685 + }; 686 + 687 + redoc_ui_plug = buildMix rec { 688 + name = "redoc_ui_plug"; 689 + version = "0.2.1"; 690 + 691 + src = fetchHex { 692 + pkg = "redoc_ui_plug"; 693 + version = "${version}"; 694 + sha256 = "7be01db31f210887e9fc18f8fbccc7788de32c482b204623556e415ed1fe714b"; 695 + }; 696 + 697 + beamDeps = [ jason plug ]; 672 698 }; 673 699 674 700 sentry = buildMix rec {