Move all editor runtime deps into package editor-runtime

This commit is contained in:
ulic-youthlic 2025-06-09 15:30:31 +08:00
parent da2860fa15
commit 6a3473813d
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
6 changed files with 89 additions and 71 deletions

View file

@ -5,6 +5,7 @@ in
./rime-ice.nix
./TrackersListCollection.nix
./OuterWildsTextAdventure.nix
./editor-runtime.nix
]
|> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -0,0 +1,5 @@
{outputs, ...}: final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
inherit (outputs.packages.${system}) editor-runtime;
}