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:
parent
7e54fbd89f
commit
8780fe0754
6 changed files with 108 additions and 7 deletions
14
flake.nix
14
flake.nix
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue