3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
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 ];
|
|
};
|
|
})
|