feat: Hud-db packageset

This commit is contained in:
Madeleine Sydney
2025-04-11 07:30:01 -06:00
parent fcbbf6be72
commit 948f6a653e
11 changed files with 2493 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
{ mkTf2Config, fetchFromGitHub }:
builtins.mapAttrs
(name: e: mkTf2Config {
pname = name;
env.description = e.description;
custom = [
(fetchFromGitHub (builtins.removeAttrs e.src ["__type"] // {
inherit name;
}))
];
})
(builtins.fromJSON (builtins.readFile ./hud-db.json))