Skip to content
Snippets Groups Projects
Commit 4a4316cb authored by Daniel Firth's avatar Daniel Firth
Browse files

pretty-show: init at 1.10

parent bdbc4ace
Branches
Tags
No related merge requests found
......@@ -409,6 +409,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "postgresql-migration" "0.2.1.4"
, callHackage "postgresql-simple" "0.6.4"
, callHackage "postgresql-simple-migration" "0.1.15.0"
, callHackage "pretty-show" "1.10"
, callHackage "pretty-simple" "4.1.1.0"
, callHackage "prettyprinter-ansi-terminal" "1.1.3"
, callHackage "primitive" "0.7.4.0"
......
......@@ -523,6 +523,8 @@ final: prev: with pkgs.haskell.lib; {
postgresql-simple-migration = prev.callPackage (./pkgs/postgresql-simple-migration.nix) { };
pretty-show = prev.callPackage (./pkgs/pretty-show.nix) { };
pretty-simple = prev.callPackage (./pkgs/pretty-simple.nix) { };
prettyprinter-ansi-terminal = prev.callPackage (./pkgs/prettyprinter-ansi-terminal.nix) { };
......
{ mkDerivation
, array
, base
, filepath
, ghc-prim
, happy
, haskell-lexer
, lib
, pretty
, text
}:
mkDerivation {
pname = "pretty-show";
version = "1.10";
sha256 = "307f9086e0b063d439dc4f513e36a145e8a57f23de448aefae2a6c00f6da6fd2";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
array
base
filepath
ghc-prim
haskell-lexer
pretty
text
];
libraryToolDepends = [ happy ];
executableHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://wiki.github.com/yav/pretty-show";
description = "Tools for working with derived `Show` instances and generic inspection of values";
license = lib.licenses.mit;
mainProgram = "ppsh";
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment