happy 1.18.6-1 source package in Ubuntu

Changelog

happy (1.18.6-1) unstable; urgency=low

  [ Marco Silva ]
  * Use ghc instead of ghc6

  [ Joachim Breitner ]
  * New upstream release 
 -- Ubuntu Archive Auto-Sync <email address hidden>   Sat,  30 Apr 2011 12:51:23 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Oneiric
Original maintainer:
Debian Haskell Group
Architectures:
any
Section:
devel
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
happy_1.18.6.orig.tar.gz 154.4 KiB 840c8fb6b9795faa4fae3c3bf3fb28ad403bc6891002dc703007870823b7cd60
happy_1.18.6-1.debian.tar.gz 8.9 KiB c7d902c43e0d64e18bd50843f9b11d0bcae4a161c924a530dca2ea66d59bdeb1
happy_1.18.6-1.dsc 1.3 KiB b12395af2ff9d4128e917b5442abd2b4553e29b1486764836b31d638f4dbe76f

Available diffs

View changes file

Binary packages built by this source

happy: Parser generator for Haskell

 Happy is a parser generator system for Haskell, similar to the tool `yacc' for
 C. Like `yacc', it takes a file containing an annotated BNF specification of a
 grammar and produces a Haskell module containing a parser for the grammar.
 .
 Happy is flexible: you can have several Happy parsers in the same program, and
 several entry points to a single grammar. Happy can work in conjunction with a
 lexical analyser supplied by the user (either hand-written or generated by
 another program), or it can parse a stream of characters directly (but this
 isn't practical in most cases).