DrIFT: Program to derive type class instances
Data.Derive http://hackage.haskell.org/package/derive is good another solution for DrFIT. But DrFIT is Haskell 98 compliant, derive is not.
DrIFT is a type sensitive preprocessor for Haskell. It extracts type declarations and directives from modules. The directives cause rules to be fired on the parsed type declarations, generating new code which is then appended to the bottom of the input file. The rules are expressed as Haskell code, and it is intended that the user can add new rules as required.
DrIFT automates instance derivation for classes that aren't supported by the standard compilers. In addition, instances can be produced in seperate modules to that containing the type declaration. This allows instances to be derived for a type after the original module has been compiled. As a bonus, simple utility functions can also be produced from a type.
This package was cabalized by gwern gwern0@gmail.com.
[Skip to Readme]
Downloads
- DrIFT-2.4.2.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 2.4.0, 2.4.1, 2.4.2 |
|---|---|
| Change log | Changelog |
| Dependencies | base (>=4.0 && <5), DrIFT , filepath , old-time , process , random [details] |
| License | BSD-3-Clause |
| Author | Noel Winstanley, John Meacham <john@repetae.net> |
| Maintainer | gwern <gwern0@gmail.com>, Metasepi team <metasepi@gmail.com> |
| Category | Data Structures |
| Home page | http://repetae.net/computer/haskell/DrIFT/ |
| Source repo | head: git clone https://github.com/ajhc/drift.git |
| Uploaded | by KiwamuOkabe at 2013年11月11日T15:35:32Z |
| Distributions | |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Executables | drift-ghc, DrIFT |
| Downloads | 4714 total (3 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Successful builds reported [all 1 reports] |
Readme for DrIFT-2.4.2
[back to package description]DrIFT Build Status
This package contains a source distribution of DrIFT, a tool for automatic derivation of Haskell class instances. DrIFT was formerly known as Derive.
The original homepage is at http://repetae.net/john/computer/haskell/DrIFT/ . But this DrIFT package has some changes with original DrIFT.
Contents of this package:
- src: Directory with the source files of the DrIFT tool
- example: Directory with examples of using the DrIFT tool
- docs: Documentation
How to install
To configure and install DrIFT from the source tarball
$ autoreconf -i
$ ./configure
$ make cabal-install