haskell-pretty-show: update to version 1.6.2

This commit is contained in:
Peter Simons 2013-12-09 13:02:23 +01:00
parent 375c13622e
commit 367b119971
2 changed files with 6 additions and 5 deletions

View File

@ -1,12 +1,13 @@
{ cabal, filepath, haskellLexer }: { cabal, filepath, happy, haskellLexer }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "pretty-show"; pname = "pretty-show";
version = "1.6.1"; version = "1.6.2";
sha256 = "17zdljvpf7ra9x3lny5kbjvmz3psn8y1k9cwbg97m017gh87gsh0"; sha256 = "0xhxyxymdjag2xczjrda5dkjc51m5k1nanpg9dmw0gr6wjaijbnp";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ filepath haskellLexer ]; buildDepends = [ filepath haskellLexer ];
buildTools = [ happy ];
meta = { meta = {
homepage = "http://wiki.github.com/yav/pretty-show"; homepage = "http://wiki.github.com/yav/pretty-show";
description = "Tools for working with derived `Show` instances and generic inspection of values"; description = "Tools for working with derived `Show` instances and generic inspection of values";

View File

@ -1772,8 +1772,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
ppm = callPackage ../development/libraries/haskell/ppm {}; ppm = callPackage ../development/libraries/haskell/ppm {};
prettyShow_1_2 = callPackage ../development/libraries/haskell/pretty-show/1.2.nix {}; prettyShow_1_2 = callPackage ../development/libraries/haskell/pretty-show/1.2.nix {};
prettyShow_1_6_1 = callPackage ../development/libraries/haskell/pretty-show/1.6.1.nix {}; prettyShow_1_6_2 = callPackage ../development/libraries/haskell/pretty-show/1.6.2.nix {};
prettyShow = self.prettyShow_1_6_1; prettyShow = self.prettyShow_1_6_2;
punycode = callPackage ../development/libraries/haskell/punycode {}; punycode = callPackage ../development/libraries/haskell/punycode {};