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