5dd0d85528
- haskell-src-exts: updated to version 1.13.3 - MemoTrie: updated to version 0.5 - semigroups: updated to version 0.8.3.2 - tagged: updated to version 0.4.2.1 - vector-space: updated to version 0.8.1 - WebBits: updated to version 2.2 svn path=/nixpkgs/trunk/; revision=34060
17 lines
550 B
Nix
17 lines
550 B
Nix
{ cabal, cpphs, happy }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "haskell-src-exts";
|
|
version = "1.13.3";
|
|
sha256 = "0z2vs6ji0dgm3c11jwcq5jcnjr8a6pawrkn3c8a3a5p612v8d495";
|
|
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 ];
|
|
};
|
|
})
|