3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
19 lines
602 B
Nix
19 lines
602 B
Nix
{ cabal, freeglut, libICE, libSM, libXi, libXmu, mesa, OpenGL
|
|
, OpenGLRaw
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "GLUT";
|
|
version = "2.4.0.0";
|
|
sha256 = "1g6bnj2p9hj6c04pmkjwlw9brp7rrva1fyylr2q2dbfz4kbz438h";
|
|
buildDepends = [ OpenGL OpenGLRaw ];
|
|
extraLibraries = [ freeglut libICE libSM libXi libXmu mesa ];
|
|
meta = {
|
|
homepage = "http://www.haskell.org/haskellwiki/Opengl";
|
|
description = "A binding for the OpenGL Utility Toolkit";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|