1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

build new 8.0 and 8.1 images

This commit is contained in:
Robin Appelman 2026-03-09 22:48:27 +01:00
commit 8780fe0754
6 changed files with 108 additions and 7 deletions

View file

@ -9,8 +9,15 @@
url = "git+https://codeberg.org/icewind/mill-scale.git";
inputs.flakelight.follows = "flakelight";
};
phps = {
url = "github:fossar/nix-phps";
};
};
outputs = {mill-scale, ...}:
outputs = {
mill-scale,
phps,
...
}:
mill-scale ./. {
crossTargets = [
"x86_64-unknown-linux-gnu"
@ -29,12 +36,17 @@
withOverlays = [
(import ./nix/overlay.nix)
(prev: final: {
inherit (phps.packages.${prev.system}) php81 php80;
})
];
packages = {
"haze-image-php-8.4" = pkgs: pkgs.haze-image-php-84;
"haze-image-php-8.3" = pkgs: pkgs.haze-image-php-83;
"haze-image-php-8.2" = pkgs: pkgs.haze-image-php-82;
"haze-image-php-8.1" = pkgs: pkgs.haze-image-php-81;
"haze-image-php-8.0" = pkgs: pkgs.haze-image-php-80;
};
tools = pkgs: with pkgs; [cargo-edit bacon skopeo];