summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pretty-show/default.nix
blob: 5fedd0aca292b1c1ecf2ed4282198f9024a1d773 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, filepath, haskellLexer }:

cabal.mkDerivation (self: {
  pname = "pretty-show";
  version = "1.5";
  sha256 = "1n04f9aypgbhkq0lbji9czv1mjfwv4f80w1c6hqs55gmzwif63m4";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ filepath haskellLexer ];
  meta = {
    homepage = "http://wiki.github.com/yav/pretty-show";
    description = "Tools for working with derived `Show` instances and generic inspection of values";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})