2013-01-07 03:18:35 -08:00
|
|
|
{ cabal, filepath, 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";
|
2013-01-07 03:18:35 -08:00
|
|
|
version = "1.5";
|
|
|
|
sha256 = "1n04f9aypgbhkq0lbji9czv1mjfwv4f80w1c6hqs55gmzwif63m4";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2013-01-07 03:18:35 -08:00
|
|
|
buildDepends = [ filepath haskellLexer ];
|
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;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-01-11 02:43:13 -08:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|