Merge pull request #89 from so-lar-is/master

Add support for 25.05
This commit is contained in:
Jonas Chevalier 2025-06-04 16:18:35 +02:00 committed by GitHub
commit 074dd32ad1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 1 deletions

View file

@ -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

View file

@ -12,3 +12,4 @@ build:
- NIXPKGS_CHANNEL: - NIXPKGS_CHANNEL:
- nixos-24.05 - nixos-24.05
- nixos-24.11 - nixos-24.11
- nixos-25.05

View file

@ -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

View file

@ -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