2014-05-23 05:36:03 +01:00
|
|
|
{ cabal, boundingboxes, colors, controlBool, filepath, free
|
2014-05-23 17:17:53 +01:00
|
|
|
, freetype2, GLFWB, hashable, JuicyPixels, JuicyPixelsUtil, lens
|
2014-05-23 05:36:03 +01:00
|
|
|
, linear, mtl, OpenGL, OpenGLRaw, random, reflection, transformers
|
|
|
|
, vector, void
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "free-game";
|
|
|
|
version = "1.0.5";
|
|
|
|
sha256 = "048hmb4zbn67ycdwy7alhfakdyv405ck79bzrxv2ra6w1v5b3yvf";
|
|
|
|
buildDepends = [
|
2014-05-23 17:17:53 +01:00
|
|
|
boundingboxes colors controlBool filepath free freetype2 GLFWB
|
2014-05-23 05:36:03 +01:00
|
|
|
hashable JuicyPixels JuicyPixelsUtil lens linear mtl OpenGL
|
|
|
|
OpenGLRaw random reflection transformers vector void
|
|
|
|
];
|
2014-05-24 00:54:55 +01:00
|
|
|
jailbreak = true;
|
2014-05-23 05:36:03 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/fumieval/free-game";
|
|
|
|
description = "Create games for free";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|