880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
19 lines
601 B
Nix
19 lines
601 B
Nix
{ cabal, GLURaw, libX11, mesa, ObjectName, OpenGLRaw, StateVar
|
|
, Tensor
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "OpenGL";
|
|
version = "2.4.0.2";
|
|
sha256 = "00rjvm02p6h8vbyxi3ri4jkk75ki414wk5al2z2fsszjfpdl93b6";
|
|
buildDepends = [ GLURaw ObjectName OpenGLRaw StateVar Tensor ];
|
|
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 ];
|
|
};
|
|
})
|