packages feed

GLMatrix-0.1.0.1: GLMatrix.cabal

Name:                GLMatrix
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
Version:             0.1.0.1

Synopsis:            Utilities for working with OpenGL matrices
description:         Some utilities for working with OpenGL matrices,
                     most of the source is from
                     https://github.com/kig/tomtegebra/blob/master/Tomtegebra/Matrix.hs,
                     by kig (Ilmari Heikkinen).

Homepage:            https://github.com/fiendfan1/GLMatrix
License:             GPL-3
License-file:        LICENSE

-- The package author(s).
Author:              kig (Ilmari Heikkinen), fiendfan1

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
Maintainer:          fiendfan1@yahoo.com

-- A copyright notice.
-- copyright:           

Category:            Graphics

Build-type:          Simple

-- Extra files to be distributed with the package, such as examples or a 
-- README.
Extra-Source-Files:  README.md

-- Constraint on the version of Cabal needed to build this package.
Cabal-version:       >=1.10


Library
  -- Modules exported by the library.
  Exposed-modules:     Graphics.GLMatrix
  
  -- Modules included in this library but not exported.
  -- other-modules:       
  
  -- LANGUAGE extensions used by modules in this package.
  other-extensions:    TypeSynonymInstances, FlexibleInstances
  
  -- Other library packages from which modules are imported.
  build-depends:       base >=4.6 && <4.7, OpenGLRaw >=1.4 && <1.5
  
  -- Directories containing source files.
  -- hs-source-dirs:      
  
  -- Base language which the package is written in.
  default-language:    Haskell2010
  HS-Source-Dirs:      src