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