6da85d3cf6
This allows it to keep building after
ba5473676f
was pushed. Perhaps we should
add the extra OpenGL versions (2.9.1.0) and specify strict versions so
that it doesn't fail to build in 2 weeks.
23 lines
784 B
Nix
23 lines
784 B
Nix
{ cabal, boundingboxes, colors, controlBool, filepath, free
|
|
, freetype2, GLFWB, hashable, JuicyPixels, JuicyPixelsUtil, lens
|
|
, linear, mtl, OpenGL, OpenGLRaw, random, reflection, transformers
|
|
, vector, void
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "free-game";
|
|
version = "1.1";
|
|
sha256 = "0id3vn2j44gd8krl5icacwxgx00h6r89yncjg10nyyb90rymvxzz";
|
|
buildDepends = [
|
|
boundingboxes colors controlBool filepath free freetype2 GLFWB
|
|
hashable JuicyPixels JuicyPixelsUtil lens linear mtl OpenGL
|
|
OpenGLRaw random reflection transformers vector void
|
|
];
|
|
jailbreak = true;
|
|
meta = {
|
|
homepage = "https://github.com/fumieval/free-game";
|
|
description = "Create games for free";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|