From 4a4316cbc69a1c7ceb79ad10fa8d2877be45b735 Mon Sep 17 00:00:00 2001 From: Daniel Firth <dan.firth@homotopic.tech> Date: Sat, 5 Nov 2022 09:48:59 +0000 Subject: [PATCH] pretty-show: init at 1.10 --- manifest.dhall | 1 + overlay.nix | 2 ++ pkgs/pretty-show.nix | 42 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 pkgs/pretty-show.nix diff --git a/manifest.dhall b/manifest.dhall index 4258fd7c..bb59f2ff 100644 --- a/manifest.dhall +++ b/manifest.dhall @@ -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" diff --git a/overlay.nix b/overlay.nix index 661eb275..dc9ab507 100644 --- a/overlay.nix +++ b/overlay.nix @@ -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) { }; diff --git a/pkgs/pretty-show.nix b/pkgs/pretty-show.nix new file mode 100644 index 00000000..1f22415a --- /dev/null +++ b/pkgs/pretty-show.nix @@ -0,0 +1,42 @@ +{ 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; +} -- GitLab