feat: JumpAcademy.tf maps

This commit is contained in:
Madeleine Sydney
2025-04-11 11:23:00 -06:00
parent e885c411e0
commit 2b3bc04751
11 changed files with 188 additions and 36 deletions

View File

@@ -0,0 +1,13 @@
{ mkTf2Config, fetchurl }:
builtins.mapAttrs
(name: e: mkTf2Config {
pname = name;
env.description = e.description;
maps = [
(fetchurl {
inherit (e.src) url hash;
})
];
})
(builtins.fromJSON (builtins.readFile ./jump-academy.json))