packages feed

language-fortran-0.5: language-fortran.cabal

name:                language-fortran
version:             0.5
synopsis:            Fortran lexer and parser, language support, and extensions. 
description:         
    Lexer and parser for Fortran roughly supporting standards from
    FORTRAN 77 to Fortran 2003 (but with some patches and rough
    edges). Also includes language extension support for
    units-of-measure typing.
license:             BSD3
license-file:        LICENSE
author:              Jason Dagit, Dominic Orchard, Oleg Oshmyan
maintainer:          dagitj@gmail.com, dom.orchard@gmail.com
bug-reports:         https://github.com/dagit/language-fortran/issues
-- copyright:           
category:            Language
build-type:          Simple
cabal-version:       >=1.8

source-repository head
  type:     git
  location: https://github.com/dagit/language-fortran

library
  ghc-options:         -Wall
  exposed-modules:     Language.Fortran.Parser,
                       Language.Fortran.Lexer,
                       Language.Fortran.Pretty,
                       Language.Fortran.PreProcess, 
                       Language.Fortran
  -- other-modules:       
  build-depends:       base >=4.0 && < 5,
                       syb >= 0.3,
                       haskell-src >= 1.0,
                       parsec, 	       		 
                       array >= 0.4

  hs-source-dirs:      src
  build-tools: alex, happy