Added linear-opengl

This commit is contained in:
Luke Clifton 2014-12-05 16:08:39 +08:00
parent 9e72a00823
commit 581fcc2ad2
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, distributive, lens, linear, OpenGL, OpenGLRaw, tagged }:
cabal.mkDerivation (self: {
pname = "linear-opengl";
version = "0.2.0.3";
sha256 = "1fkx5qbimkw2z6nv1jrqb1s0pixlb7l54wxvlhx0nx1kw299dbnd";
buildDepends = [
distributive lens linear OpenGL OpenGLRaw tagged
];
meta = {
homepage = "http://www.github.com/bgamari/linear-opengl";
description = "Isomorphisms between linear and OpenGL types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1538,6 +1538,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
linear = callPackage ../development/libraries/haskell/linear {};
linearOpenGL = callPackage ../development/libraries/haskell/linear-opengl {};
linuxInotify = callPackage ../development/libraries/haskell/linux-inotify {};
List = callPackage ../development/libraries/haskell/List {};