mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
10 lines
145 B
Nix
10 lines
145 B
Nix
{ callPackage }:
|
|
|
|
{
|
|
ut2004-demo = callPackage ./demo.nix { };
|
|
|
|
ut2004 = gamePacks: callPackage ./wrapper.nix {
|
|
inherit gamePacks;
|
|
};
|
|
}
|