2013-12-09 04:02:23 -08:00
|
|
|
{ cabal, filepath, happy, haskellLexer }:
|
2011-01-11 02:43:13 -08:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-01-11 02:43:13 -08:00
|
|
|
pname = "pretty-show";
|
2014-05-23 06:57:20 -07:00
|
|
|
version = "1.6.8";
|
|
|
|
sha256 = "0vfb712dvbb91659sch62d06vm0451b9l4l0hdwnlbhzjymmh2rs";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2013-01-07 03:18:35 -08:00
|
|
|
buildDepends = [ filepath haskellLexer ];
|
2013-12-09 04:02:23 -08:00
|
|
|
buildTools = [ happy ];
|
2011-01-11 02:43:13 -08:00
|
|
|
meta = {
|
2011-08-09 16:00:20 -07:00
|
|
|
homepage = "http://wiki.github.com/yav/pretty-show";
|
2013-01-07 03:18:35 -08:00
|
|
|
description = "Tools for working with derived `Show` instances and generic inspection of values";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-01-11 02:43:13 -08:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|