16 lines
477 B
Nix
16 lines
477 B
Nix
{ cabal, mesa }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "OpenGLRaw";
|
|
version = "1.3.0.0";
|
|
sha256 = "0ifp5inrm48hzpq0x9hlk5cxh2k64y05phmsdb5hydb7r6dcla32";
|
|
extraLibraries = [ mesa ];
|
|
meta = {
|
|
homepage = "http://www.haskell.org/haskellwiki/Opengl";
|
|
description = "A raw binding for the OpenGL graphics system";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|