Adapted the ghc-7.4.1 package version defaults to upcoming Platform release.

svn path=/nixpkgs/trunk/; revision=34032
This commit is contained in:
Andres Löh
2012-05-09 17:21:37 +00:00
parent 262c2a45b0
commit 40274ca75c
3 changed files with 25 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
{ cabal, libX11, mesa }:
cabal.mkDerivation (self: {
pname = "OpenGL";
version = "2.2.3.1";
sha256 = "1vl5i1l76mjc0p18awdrvdcpszaz1z891505cqmn1xlld7ijb14z";
extraLibraries = [ libX11 mesa ];
meta = {
homepage = "http://www.haskell.org/HOpenGL/";
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 ];
};
})