nixpkgs/pkgs/development/libraries/haskell/haskell-src-exts/1.13.3.nix
Peter Simons 5dd0d85528 Updated Haskell packages.
- 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
2012-05-11 13:04:35 +00:00

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 ];
};
})