(pkgs): Add new package radicle-ci-broker

This commit is contained in:
ulic-youthlic 2025-06-24 21:42:12 +08:00
parent 16fd11acdb
commit f6ace25228
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
7 changed files with 73 additions and 8 deletions

View file

@ -5,6 +5,7 @@ in
./TrackersListCollection.nix
./OuterWildsTextAdventure.nix
./editor-runtime.nix
./radicle-ci-broker.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}) radicle-ci-broker;
}