Author: simons
Date: Sun Aug 14 10:44:33 2011
New Revision: 28561
URL: https://svn.nixos.org/websvn/nix/?rev=28561&sc=1

Log:
haskell-GLURaw: added version 1.1.0.0

Added:
   nixpkgs/trunk/pkgs/development/libraries/haskell/GLURaw/
   nixpkgs/trunk/pkgs/development/libraries/haskell/GLURaw/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: nixpkgs/trunk/pkgs/development/libraries/haskell/GLURaw/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/GLURaw/default.nix Sun Aug 
14 10:44:33 2011        (r28561)
@@ -0,0 +1,19 @@
+{ cabal, GLU, OpenGLRaw }:
+
+cabal.mkDerivation (self: {
+  pname = "GLURaw";
+  version = "1.1.0.0";
+  sha256 = "03lsskqxh2q7kbnw8hbxz5wp7zq55nwbibsb9maj4y3xpc1vprac";
+  buildDepends = [ OpenGLRaw ];
+  extraLibraries = [ GLU ];
+  meta = {
+    homepage = "http://www.haskell.org/HOpenGL/";;
+    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
+      self.stdenv.lib.maintainers.simons
+    ];
+  };
+})

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug 14 10:44:28 
2011        (r28560)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug 14 10:44:33 
2011        (r28561)
@@ -602,6 +602,10 @@
 
   GlomeVec = callPackage ../development/libraries/haskell/GlomeVec {};
 
+  GLURaw = callPackage ../development/libraries/haskell/GLURaw {
+    GLU = pkgs.freeglut;
+  };
+
   GLUT_2_1_1_2 = callPackage ../development/libraries/haskell/GLUT/2.1.1.2.nix 
{
     glut = pkgs.freeglut;
     inherit (pkgs) mesa;
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to