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
15 lines
489 B
Nix
15 lines
489 B
Nix
{ cabal, haskellSrcExts, syb, thLift, uniplate }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "haskell-src-meta";
|
|
version = "0.5.1.2";
|
|
sha256 = "09if8423dwf4jcr6p7d8j4r9i2n8jc7xxvjn1p1mwjp0ajzk8g9s";
|
|
buildDepends = [ haskellSrcExts syb thLift uniplate ];
|
|
meta = {
|
|
description = "Parse source to template-haskell abstract syntax";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|