mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
18 lines
280 B
Nix
18 lines
280 B
Nix
|
{ callPackage }:
|
||
|
|
||
|
{
|
||
|
buildMod = callPackage ./builder.nix {
|
||
|
type = "mod";
|
||
|
};
|
||
|
|
||
|
buildSoundPack = callPackage ./builder.nix {
|
||
|
type = "soundpack";
|
||
|
};
|
||
|
|
||
|
buildTileSet = callPackage ./builder.nix {
|
||
|
type = "tileset";
|
||
|
};
|
||
|
|
||
|
wrapCDDA = callPackage ./wrapper.nix {};
|
||
|
}
|