1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

haskell-pretty-show: update to version 1.5

This commit is contained in:
Peter Simons 2013-01-07 12:18:35 +01:00
parent 351c10751e
commit 6fa197d6e4

View file

@ -1,15 +1,15 @@
{ cabal, haskellLexer }:
{ cabal, filepath, haskellLexer }:
cabal.mkDerivation (self: {
pname = "pretty-show";
version = "1.3.2";
sha256 = "0m3kw4d68gd1mhlgi5vy3k2cqi9f0i4s502m2sgy4pww45fjllxy";
version = "1.5";
sha256 = "1n04f9aypgbhkq0lbji9czv1mjfwv4f80w1c6hqs55gmzwif63m4";
isLibrary = true;
isExecutable = true;
buildDepends = [ haskellLexer ];
buildDepends = [ filepath haskellLexer ];
meta = {
homepage = "http://wiki.github.com/yav/pretty-show";
description = "Tools for working with derived Show instances";
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 ];