mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
16 lines
477 B
Nix
16 lines
477 B
Nix
|
{ cabal, mesa }:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "OpenGLRaw";
|
||
|
version = "1.4.0.0";
|
||
|
sha256 = "112xaz01950pyjaw3cv9yvw4w3gqbf79idyyh05ain7x29m7bxkh";
|
||
|
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 ];
|
||
|
};
|
||
|
})
|