haskell-gloss: keep old version around for GHC 7.8.x

This commit is contained in:
Peter Simons 2015-04-06 21:23:40 +02:00
parent 16dd6caec0
commit d751367d70
2 changed files with 20 additions and 0 deletions

View file

@ -109,4 +109,7 @@ self: super: {
wai-middleware-preprocessor = dontCheck super.wai-middleware-preprocessor;
incremental-computing = dontCheck super.incremental-computing;
# Newer versions require base > 4.7
gloss = super.gloss_1_9_2_1;
}

View file

@ -51631,6 +51631,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gloss_1_9_2_1" = callPackage
({ mkDerivation, base, bmp, bytestring, containers, ghc-prim
, gloss-rendering, GLUT, OpenGL
}:
mkDerivation {
pname = "gloss";
version = "1.9.2.1";
sha256 = "1fk7472lw4621gv64fv4mna8z1av15f7d0didpc9r22rdlkpa80l";
buildDepends = [
base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL
];
jailbreak = true;
homepage = "http://gloss.ouroborus.net";
description = "Painless 2D vector graphics, animations and simulations";
license = stdenv.lib.licenses.mit;
}) {};
"gloss" = callPackage
({ mkDerivation, base, bmp, bytestring, containers, ghc-prim
, gloss-rendering, GLUT, OpenGL