flake: fix broken inherit

lock: update inputs

- fixes error when build from up to date nixpkgs systems
- fixes scenefx 0.5 being missing
- keeps flake-parts up-to-date with the used nixpkgs
This commit is contained in:
Soliprem 2026-07-08 15:04:21 +02:00 committed by DreamMaoMao
parent b15f7a0e72
commit 2dba3a9371
2 changed files with 53 additions and 15 deletions

View file

@ -28,9 +28,9 @@
pkgs,
...
}: let
inherit (pkgs) callPackage ;
inherit (pkgs) callPackage;
mango = callPackage ./nix {
inherit (inputs.scenefx.packages.${pkgs.stdenv.hostPlatform.system}) scenefx;
scenefx = inputs.scenefx.packages.${pkgs.stdenv.hostPlatform.system}.default;
};
shellOverride = old: {
nativeBuildInputs = old.nativeBuildInputs ++ [];