This reverts commit 61c63737af.
Fixes JumpAcademy maps failing to build.
14 lines
275 B
Nix
14 lines
275 B
Nix
{ 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))
|