mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-gloss: keep old version around for GHC 7.8.x
This commit is contained in:
parent
16dd6caec0
commit
d751367d70
2 changed files with 20 additions and 0 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue