flake: fix broken inherit
Some checks are pending
Generate Nix Options Docs / update-docs (push) Waiting to run

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 f722bcc918
commit 92c4d58694
2 changed files with 13 additions and 14 deletions

View file

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