Skip to content

Commit 13c6a11

Browse files
authored
bump unstable and add nixpkgs 25.11 channel (#178)
Why === * A [new stable NixOS version was released](https://nixos.org/manual/nixos/stable/release-notes.html#sec-release-25.11) * nixpkgs-unstable should be kept up to date What changed === * bumped nixpkgs-unstable to latest * ran ./add.sh 25.11 * set default channel to nixpkgs-25.11 Test plan === * CI builds for 25.11
1 parent 83f6eae commit 13c6a11

6 files changed

Lines changed: 41 additions & 5 deletions

File tree

.semaphore/semaphore.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
default=nixpkgs-25.05
3+
default=nixpkgs-25.11
44
channel=$default
55

66
function error() {

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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 ? { }

hydra/release-25.11.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}

nix/sources.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,18 @@
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": "",
@@ -124,10 +136,10 @@
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": {

update.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ nix-shell -p niv --run 'niv update nixpkgs-23.11 -b nixos-23.11'
88
nix-shell -p niv --run 'niv update nixpkgs-24.05 -b nixos-24.05'
99
nix-shell -p niv --run 'niv update nixpkgs-24.11 -b nixos-24.11'
1010
nix-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'

0 commit comments

Comments
 (0)