1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pretty: new haskell package

This commit is contained in:
Luca Bruno 2014-07-07 15:20:29 +02:00
parent e497265b72
commit 51dc75b769
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ 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,6 +1792,8 @@ 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 {};