Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
17 lines
623 B
Nix
17 lines
623 B
Nix
{
|
|
recurseIntoAttrs,
|
|
callPackage,
|
|
lib,
|
|
}:
|
|
|
|
# All versions are taken from `version.json` created by `update.py`, and realised with `generic.nix`.
|
|
# The `update.py` is a web scraper script that writes the latest versions into `version.json`.
|
|
|
|
# The `versions.json` can be automatically updated and committed with a commit summary.
|
|
# To do so, change directory to nixpkgs root, and do:
|
|
# $ nix-shell ./maintainers/scripts/update.nix --argstr package optifinePackages.optifine-latest --argstr commit true
|
|
|
|
recurseIntoAttrs (
|
|
lib.mapAttrs (name: value: callPackage ./generic.nix value) (lib.importJSON ./versions.json)
|
|
)
|