haskell-OpenGL: add version 2.9.0.0
This commit is contained in:
parent
1e42892af0
commit
8d907ea19e
16
pkgs/development/libraries/haskell/OpenGL/2.9.0.0.nix
Normal file
16
pkgs/development/libraries/haskell/OpenGL/2.9.0.0.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ cabal, GLURaw, libX11, mesa, OpenGLRaw, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "OpenGL";
|
||||
version = "2.9.0.0";
|
||||
sha256 = "0likrpzlzis8fk11g7mjn102y6y6k2w8bkybqqhhmfls7ccgpvhp";
|
||||
buildDepends = [ GLURaw OpenGLRaw text ];
|
||||
extraLibraries = [ libX11 mesa ];
|
||||
meta = {
|
||||
homepage = "http://www.haskell.org/haskellwiki/Opengl";
|
||||
description = "A binding for the OpenGL graphics system";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
};
|
||||
})
|
@ -1577,7 +1577,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
OpenGL_2_4_0_2 = callPackage ../development/libraries/haskell/OpenGL/2.4.0.2.nix {};
|
||||
OpenGL_2_6_0_1 = callPackage ../development/libraries/haskell/OpenGL/2.6.0.1.nix {};
|
||||
OpenGL_2_8_0_0 = callPackage ../development/libraries/haskell/OpenGL/2.8.0.0.nix {};
|
||||
OpenGL = self.OpenGL_2_8_0_0;
|
||||
OpenGL_2_9_0_0 = callPackage ../development/libraries/haskell/OpenGL/2.9.0.0.nix {};
|
||||
OpenGL = self.OpenGL_2_9_0_0;
|
||||
|
||||
OpenGLRaw_1_3_0_0 = callPackage ../development/libraries/haskell/OpenGLRaw/1.3.0.0.nix {};
|
||||
OpenGLRaw_1_4_0_0 = callPackage ../development/libraries/haskell/OpenGLRaw/1.4.0.0.nix {};
|
||||
|
Loading…
Reference in New Issue
Block a user