about summary refs log tree commit diff
path: root/pkgs/games/build-support/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-07-16 07:09:38 +0200
committeraszlig <aszlig@nix.build>2018-07-19 06:35:06 +0200
commitc9dfe485e9b922b35c9412e6c4fdbe119f17f4b5 (patch)
tree96180ef3647607a6eb764bfe2aa4c48d0fe0999e /pkgs/games/build-support/default.nix
parentbc0be07dd9920c8dfc16be8f5bdb269bc9e3f986 (diff)
towerfall-ascension: Move patcher into own pkg
The patcher using Cecil is now in its own derivation and can thus be
easily added via nativeBuildInputs. Patching FileStream types is so
common that it comes in handy for other games using Mono.

I also improved the patcher a little bit so it accepts command line
arguments and it's easier to add the types that needed to be patched
directly via command line arguments.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/games/build-support/default.nix')
-rw-r--r--pkgs/games/build-support/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/games/build-support/default.nix b/pkgs/games/build-support/default.nix
index 8e227afc..1832f987 100644
--- a/pkgs/games/build-support/default.nix
+++ b/pkgs/games/build-support/default.nix
@@ -5,4 +5,5 @@
     withPulseAudio = config.pulseaudio or true;
   };
   buildUnity = callPackage ./build-unity.nix {};
+  monogamePatcher = callPackage ./monogame-patcher {};
 }