From 7a7cffce514f8967cb610399890f252cab75eb6a Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 10 Sep 2017 08:01:59 +0200 Subject: games/invisigun-heroes: Factor out into buildUnity There are a lot of Unity games out there, so it's a good idea to have a generic builder just for Unity, which we then can apply to a lot more games. Right now this is a pretty basic abstraction which I've only tested with Invisigun Heroes. Signed-off-by: aszlig --- pkgs/games/build-support/default.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pkgs/games/build-support/default.nix (limited to 'pkgs/games/build-support/default.nix') diff --git a/pkgs/games/build-support/default.nix b/pkgs/games/build-support/default.nix new file mode 100644 index 00000000..8b6b466d --- /dev/null +++ b/pkgs/games/build-support/default.nix @@ -0,0 +1,5 @@ +{ callPackage, ... }: + +{ + buildUnity = callPackage ./build-unity.nix {}; +} -- cgit 1.4.1