happy 1.20.0-1build1 source package in Ubuntu
Changelog
happy (1.20.0-1build1) lunar; urgency=medium * Rebuild against new GHC ABI. -- Gianfranco Costamagna <email address hidden> Fri, 09 Dec 2022 13:57:44 +0100
Upload details
- Uploaded by:
- Gianfranco Costamagna
- Uploaded to:
- Lunar
- Original maintainer:
- Debian Haskell Group
- Architectures:
- any
- Section:
- devel
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | universe | devel | |
Lunar | release | universe | devel |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
happy_1.20.0.orig.tar.gz | 180.2 KiB | 3b1d3a8f93a2723b554d9f07b2cd136be1a7b2fcab1855b12b7aab5cbac8868c |
happy_1.20.0-1build1.debian.tar.xz | 9.1 KiB | 1d78288a65e3e4872fcc1e6c168a1a3e76dab0bcb4c3b89f2dff8fd27c550186 |
happy_1.20.0-1build1.dsc | 2.1 KiB | e38542051d8d2bf9b9801b4a82bf377772779a7bce4629cc4181133c24035a8a |
Available diffs
- diff from 1.20.0-1 (in Debian) to 1.20.0-1build1 (316 bytes)
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).