packages feed

language-fortran-0.3: language-fortran.cabal

name:                language-fortran
version:             0.3
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
-- copyright:           
category:            Language
build-type:          Simple
cabal-version:       >=1.8

library
  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