mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +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 {};
|
|
}
|