haskell-pretty-show: update to version 1.6.7

... and drop obsolete 1.2 version.
This commit is contained in:
Peter Simons 2014-05-23 15:57:20 +02:00
parent 07151095a7
commit a815933a5d
3 changed files with 3 additions and 21 deletions

View File

@ -1,16 +0,0 @@
{ cabal, haskellLexer }:
cabal.mkDerivation (self: {
pname = "pretty-show";
version = "1.2";
sha256 = "0lbalmyrqisgd2spbvzifsy25lr6cl9sgz78hav8q8r406k7nf2l";
isLibrary = true;
isExecutable = true;
buildDepends = [ haskellLexer ];
meta = {
homepage = "http://wiki.github.com/yav/pretty-show";
description = "Tools for working with derived Show instances";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2,8 +2,8 @@
cabal.mkDerivation (self: {
pname = "pretty-show";
version = "1.6.7";
sha256 = "16qjp6cl3hyir5bchnncq95bp7nw5cpp5kd5mszkjjhzw1jj9srz";
version = "1.6.8";
sha256 = "0vfb712dvbb91659sch62d06vm0451b9l4l0hdwnlbhzjymmh2rs";
isLibrary = true;
isExecutable = true;
buildDepends = [ filepath haskellLexer ];

View File

@ -1691,9 +1691,7 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
prettyclass = callPackage ../development/libraries/haskell/prettyclass {};
prettyShow_1_2 = callPackage ../development/libraries/haskell/pretty-show/1.2.nix {};
prettyShow_1_6_7 = callPackage ../development/libraries/haskell/pretty-show/1.6.7.nix {};
prettyShow = self.prettyShow_1_6_7;
prettyShow = callPackage ../development/libraries/haskell/pretty-show {};
punycode = callPackage ../development/libraries/haskell/punycode {};