Skip to content

Commit 69f538c

Browse files
authored
Drop support for nixpkgs-25.05 (#939)
1 parent 2b3a5a8 commit 69f538c

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
include:
3232
# Latest and greatest release of Nix
3333
- install_url: https://nixos.org/nix/install
34-
# The 25.05 branch ships with Nix 2.28.3
35-
- install_url: https://releases.nixos.org/nix/nix-2.28.3/install
34+
# The 25.11 branch ships with Nix 2.31.2
35+
- install_url: https://releases.nixos.org/nix/nix-2.31.2/install
3636
nixpkgs-override: "--override-input nixpkgs $(./ci/ref-from-lock.sh ./test#nixpkgs-latest-release)"
3737
runs-on: ubuntu-latest
3838
steps:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## Unreleased
88

9+
### Changed
10+
* **Breaking**: dropped compatibility for Nix versions below 2.31.2
11+
* **Breaking**: dropped compatibility for nixpkgs-25.05
12+
913
## [0.21.3] - 2025-12-04
1014

1115
### Added

lib/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}:
1313

1414
let
15-
minSupported = "25.05";
15+
minSupported = "25.11";
1616
current = lib.concatStringsSep "." (lib.lists.sublist 0 2 (lib.splitVersion lib.version));
1717
isUnsupported = lib.versionOlder current minSupported;
1818
msg = "crane requires at least nixpkgs-${minSupported}, supplied nixpkgs-${current}";

test/flake.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
inputs = {
88
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
9-
nixpkgs-latest-release.url = "github:NixOS/nixpkgs/nixos-25.05";
9+
nixpkgs-latest-release.url = "github:NixOS/nixpkgs/nixos-25.11";
1010

1111
advisory-db = {
1212
url = "github:rustsec/advisory-db";

0 commit comments

Comments
 (0)