Add support for 25.05
This commit is contained in:
parent
8fdb8770b3
commit
fe1eb377ed
4 changed files with 9 additions and 1 deletions
2
.github/workflows/nix.yml
vendored
2
.github/workflows/nix.yml
vendored
|
@ -19,6 +19,7 @@ jobs:
|
||||||
- nixos-unstable
|
- nixos-unstable
|
||||||
- nixos-24.05
|
- nixos-24.05
|
||||||
- nixos-24.11
|
- nixos-24.11
|
||||||
|
- nixos-25.05
|
||||||
system:
|
system:
|
||||||
- aarch64-linux
|
- aarch64-linux
|
||||||
- x86_64-linux
|
- x86_64-linux
|
||||||
|
@ -67,6 +68,7 @@ jobs:
|
||||||
- nixos-unstable
|
- nixos-unstable
|
||||||
- nixos-24.05
|
- nixos-24.05
|
||||||
- nixos-24.11
|
- nixos-24.11
|
||||||
|
- nixos-25.05
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
|
@ -12,3 +12,4 @@ build:
|
||||||
- NIXPKGS_CHANNEL:
|
- NIXPKGS_CHANNEL:
|
||||||
- nixos-24.05
|
- nixos-24.05
|
||||||
- nixos-24.11
|
- nixos-24.11
|
||||||
|
- nixos-25.05
|
||||||
|
|
|
@ -41,6 +41,7 @@ nixpkgs channel describes.
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| nixos-24.05 | nixos-24.05 | only minor versions that include security updates |
|
| nixos-24.05 | nixos-24.05 | only minor versions that include security updates |
|
||||||
| nixos-24.11 | nixos-24.11 | only minor versions that include security updates |
|
| nixos-24.11 | nixos-24.11 | only minor versions that include security updates |
|
||||||
|
| nixos-25.05 | nixos-25.05 | only minor versions that include security updates |
|
||||||
| nixos-unstable | latest | latest and greatest, major versions might change |
|
| nixos-unstable | latest | latest and greatest, major versions might change |
|
||||||
|
|
||||||
## List of images
|
## List of images
|
||||||
|
|
|
@ -42,7 +42,11 @@ let
|
||||||
nix
|
nix
|
||||||
|
|
||||||
# runtime dependencies of nix
|
# runtime dependencies of nix
|
||||||
cacert
|
# HACK: don't include the "hashed" output. It has overlapping files with
|
||||||
|
# the "unbundled" output, and that breaks the build.
|
||||||
|
(cacert // {
|
||||||
|
outputs = builtins.filter (x: x != "hashed") cacert.outputs;
|
||||||
|
})
|
||||||
gitReallyMinimal
|
gitReallyMinimal
|
||||||
gnutar
|
gnutar
|
||||||
gzip
|
gzip
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue