25fe5d43fe
- MemoTrie: updated to version 0.4.11 - X11: updated to version 1.6.0 - derive: updated to version 2.5.8 - gloss: updated to version 1.7.1.1 - haskell-src-exts: updated to version 1.13.0 - haskell-src-meta: updated to version 0.5.1.2 - hlint: updated to version 1.8.28 svn path=/nixpkgs/trunk/; revision=33528
17 lines
550 B
Nix
17 lines
550 B
Nix
{ cabal, cpphs, happy }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "haskell-src-exts";
|
|
version = "1.11.1";
|
|
sha256 = "1jqf8l81zw7x5ryf8h2n0b2636yhxkfp3j4ndbqw6hc7i5q581m6";
|
|
buildDepends = [ cpphs ];
|
|
buildTools = [ happy ];
|
|
meta = {
|
|
homepage = "http://code.haskell.org/haskell-src-exts";
|
|
description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|