Revert "pretty: new haskell package"

This reverts commit 51dc75b769. The pretty
library is a core package since (at least) GHC 6.10.4, i.e. every single one of
our compilers ships this library by default. Adding the package to the global
namespace like this is almost certainly going to cause trouble because we'll
end up with inconsistently linked binaries whenever packages mix the user-space
pretty library with the core one.
This commit is contained in:
Peter Simons 2014-07-07 16:41:59 +02:00
parent 83e1ff846c
commit 2044c13947
2 changed files with 0 additions and 17 deletions

View file

@ -1,15 +0,0 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "pretty";
version = "1.1.1.1";
sha256 = "1rjpqa4grhamzn5s9xg4w16cz2dpkn7ii9bpqy8lg4fiwppvg2kb";
doCheck = false;
meta = {
description = "Pretty printing library especially useful for compilers and related tools";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1792,8 +1792,6 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
presburger = callPackage ../development/libraries/haskell/presburger {};
pretty = callPackage ../development/libraries/haskell/pretty {};
prettyclass = callPackage ../development/libraries/haskell/prettyclass {};
prettyShow = callPackage ../development/libraries/haskell/pretty-show {};