Skip to content

Commit 0768276

Browse files
committed
Prefer pinning stable nixpkgs over unstable
1 parent febca08 commit 0768276

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.last-exported-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Last exported commit from parent repo: e9a0e98cdd842807458a0447c1cfb64e52f1f270
1+
Last exported commit from parent repo: 792b0fdcb1b22f50126ae4c2e80bb59ba63c707b

nix-bootstrap.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 2.0
55
-- see: https://github.com/sol/hpack
66

77
name: nix-bootstrap
8-
version: 2.5.0.1
8+
version: 2.5.1.0
99
author: gchquser
1010
maintainer: [email protected]
1111
copyright: Crown Copyright

package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
name: nix-bootstrap
15-
version: 2.5.0.1
15+
version: 2.5.1.0
1616
author: gchquser
1717
maintainer: [email protected]
1818
copyright: Crown Copyright

src/Bootstrap/Nix/Expr/FlakeInputs.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ import Bootstrap.Nix.Expr
1515
nixpkgsSrcInputBinding :: Target -> Binding
1616
nixpkgsSrcInputBinding target =
1717
[nixproperty|nixpkgs-src.url|] |= case target of
18-
TargetDefault -> [nix|"nixpkgs"|]
18+
TargetDefault -> [nix|"nixpkgs/25.05"|]

test/Bootstrap/Data/Bootstrappable/FlakeNixSpec.hs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec = describe "flake.nix rendering" do
2727
[r|{
2828
description = "Development infrastructure for test-project";
2929
inputs = {
30-
nixpkgs-src.url = "nixpkgs";
30+
nixpkgs-src.url = "nixpkgs/25.05";
3131
};
3232
outputs = {
3333
nixpkgs-src,
@@ -56,7 +56,7 @@ spec = describe "flake.nix rendering" do
5656
[r|{
5757
description = "Development infrastructure for test-project";
5858
inputs = {
59-
nixpkgs-src.url = "nixpkgs";
59+
nixpkgs-src.url = "nixpkgs/25.05";
6060
};
6161
outputs = {
6262
nixpkgs-src,
@@ -97,7 +97,7 @@ spec = describe "flake.nix rendering" do
9797
[r|{
9898
description = "Development infrastructure for test-project";
9999
inputs = {
100-
nixpkgs-src.url = "nixpkgs";
100+
nixpkgs-src.url = "nixpkgs/25.05";
101101
pre-commit-hooks-lib.url = "github:cachix/pre-commit-hooks.nix";
102102
};
103103
outputs = {
@@ -141,7 +141,7 @@ spec = describe "flake.nix rendering" do
141141
[r|{
142142
description = "Development infrastructure for test-project";
143143
inputs = {
144-
nixpkgs-src.url = "nixpkgs";
144+
nixpkgs-src.url = "nixpkgs/25.05";
145145
pre-commit-hooks-lib.url = "github:cachix/pre-commit-hooks.nix";
146146
};
147147
outputs = {
@@ -189,7 +189,7 @@ spec = describe "flake.nix rendering" do
189189
[r|{
190190
description = "Development infrastructure for test-project";
191191
inputs = {
192-
nixpkgs-src.url = "nixpkgs";
192+
nixpkgs-src.url = "nixpkgs/25.05";
193193
};
194194
outputs = {
195195
nixpkgs-src,
@@ -230,7 +230,7 @@ spec = describe "flake.nix rendering" do
230230
[r|{
231231
description = "Development infrastructure for test-project";
232232
inputs = {
233-
nixpkgs-src.url = "nixpkgs";
233+
nixpkgs-src.url = "nixpkgs/25.05";
234234
pre-commit-hooks-lib.url = "github:cachix/pre-commit-hooks.nix";
235235
};
236236
outputs = {
@@ -270,7 +270,7 @@ spec = describe "flake.nix rendering" do
270270
[r|{
271271
description = "Development infrastructure for test-project";
272272
inputs = {
273-
nixpkgs-src.url = "nixpkgs";
273+
nixpkgs-src.url = "nixpkgs/25.05";
274274
mach-nix.url = "github:DavHau/mach-nix?ref=3.5.0";
275275
};
276276
outputs = {
@@ -313,7 +313,7 @@ spec = describe "flake.nix rendering" do
313313
[r|{
314314
description = "Development infrastructure for test-project";
315315
inputs = {
316-
nixpkgs-src.url = "nixpkgs";
316+
nixpkgs-src.url = "nixpkgs/25.05";
317317
pre-commit-hooks-lib.url = "github:cachix/pre-commit-hooks.nix";
318318
};
319319
outputs = {

test/Bootstrap/Nix/FlakeSpec.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec = describe "intermediateFlake" do
2121
[r|{
2222
description = "Development infrastructure for test-project";
2323
inputs = {
24-
nixpkgs-src.url = "nixpkgs";
24+
nixpkgs-src.url = "nixpkgs/25.05";
2525
};
2626
outputs = _: {};
2727
}

0 commit comments

Comments
 (0)