File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ blocks:
5555 - nixpkgs-24.05
5656 - nixpkgs-24.11
5757 - nixpkgs-25.05
58+ - nixpkgs-25.11
5859 - nixpkgs-unstable
5960 commands :
6061 - mkdir /tmp/$NIXPKGS_CHANNEL
@@ -155,3 +156,12 @@ promotions:
155156 default_value : nixpkgs-25.05
156157 description : Which channel to update?
157158 name : NIXPKGS_CHANNEL
159+
160+ - name : Push nixpkgs-25.11 to GCS
161+ pipeline_file : push.yml
162+ parameters :
163+ env_vars :
164+ - required : true
165+ default_value : nixpkgs-25.11
166+ description : Which channel to update?
167+ name : NIXPKGS_CHANNEL
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- default=nixpkgs-25.05
3+ default=nixpkgs-25.11
44channel=$default
55
66function error() {
Original file line number Diff line number Diff line change 11{ sources ? import nix/sources.nix
2- , channelName ? "nixpkgs-25.05 "
2+ , channelName ? "nixpkgs-25.11 "
33, channel ? sources . ${ channelName }
44, system ? "x86_64-linux"
55, config ? { }
Original file line number Diff line number Diff line change 1+ { } :
2+
3+ let
4+ sources = import ../nix/sources.nix ;
5+ pkgs = import ../default.nix {
6+ sources = sources ;
7+ channel = sources . "nixpkgs-25.11" ;
8+ } ;
9+ in
10+ {
11+ inherit ( pkgs ) replitPackages ;
12+ inherit ( pkgs . nodePackages ) typescript-language-server yarn prettier svelte-language-server ;
13+ }
Original file line number Diff line number Diff line change 107107 "url" : " https://github.com/nixos/nixpkgs/archive/650e572363c091045cdbc5b36b0f4c1f614d3058.tar.gz" ,
108108 "url_template" : " https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
109109 },
110+ "nixpkgs-25.11" : {
111+ "branch" : " nixos-25.11" ,
112+ "description" : " Nix Packages collection & NixOS" ,
113+ "homepage" : " " ,
114+ "owner" : " nixos" ,
115+ "repo" : " nixpkgs" ,
116+ "rev" : " fa56d7d6de78f5a7f997b0ea2bc6efd5868ad9e8" ,
117+ "sha256" : " 0d8xd2rk1phikz7icawxkbdsg8yc5c71hs5aln0kg9hj73f50kaz" ,
118+ "type" : " tarball" ,
119+ "url" : " https://github.com/nixos/nixpkgs/archive/fa56d7d6de78f5a7f997b0ea2bc6efd5868ad9e8.tar.gz" ,
120+ "url_template" : " https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
121+ },
110122 "nixpkgs-legacy" : {
111123 "description" : " Nix Packages collection" ,
112124 "homepage" : " " ,
124136 "homepage" : " " ,
125137 "owner" : " nixos" ,
126138 "repo" : " nixpkgs" ,
127- "rev" : " 650e572363c091045cdbc5b36b0f4c1f614d3058 " ,
128- "sha256" : " 150ip7d1izr4falxvnidgjmisbfja17rp4afigigld2hlhndafm7 " ,
139+ "rev" : " ac055f38c798b0d87695240c7b761b82fc7e5bc2 " ,
140+ "sha256" : " 1h50qndal9bjwc30sqa9h6169a5x109gfg1chpxpqf4kfn9yvd5n " ,
129141 "type" : " tarball" ,
130- "url" : " https://github.com/nixos/nixpkgs/archive/650e572363c091045cdbc5b36b0f4c1f614d3058 .tar.gz" ,
142+ "url" : " https://github.com/nixos/nixpkgs/archive/ac055f38c798b0d87695240c7b761b82fc7e5bc2 .tar.gz" ,
131143 "url_template" : " https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
132144 },
133145 "prybar" : {
Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ nix-shell -p niv --run 'niv update nixpkgs-23.11 -b nixos-23.11'
88nix-shell -p niv --run ' niv update nixpkgs-24.05 -b nixos-24.05'
99nix-shell -p niv --run ' niv update nixpkgs-24.11 -b nixos-24.11'
1010nix-shell -p niv --run ' niv update nixpkgs-25.05 -b nixos-25.05'
11+ nix-shell -p niv --run ' niv update nixpkgs-25.11 -b nixos-25.11'
You can’t perform that action at this time.
0 commit comments