mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-07-10 00:07:25 -04:00
flake: fix broken inherit
Some checks are pending
Generate Nix Options Docs / update-docs (push) Waiting to run
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:
parent
f722bcc918
commit
92c4d58694
2 changed files with 13 additions and 14 deletions
|
|
@ -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 ++ [];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue