summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pretty-show/1.6.5.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/pretty-show/1.6.5.nix')
-rw-r--r--pkgs/development/libraries/haskell/pretty-show/1.6.5.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/pretty-show/1.6.5.nix b/pkgs/development/libraries/haskell/pretty-show/1.6.5.nix
new file mode 100644
index 000000000000..60a191da2511
--- /dev/null
+++ b/pkgs/development/libraries/haskell/pretty-show/1.6.5.nix
@@ -0,0 +1,18 @@
+{ cabal, filepath, happy, haskellLexer }:
+
+cabal.mkDerivation (self: {
+  pname = "pretty-show";
+  version = "1.6.5";
+  sha256 = "0yn20gh2xwzvfwb9fdzxqqbbb6vvd4rlv5ancw4vc8p2kgfhwxf3";
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [ filepath haskellLexer ];
+  buildTools = [ happy ];
+  meta = {
+    homepage = "http://wiki.github.com/yav/pretty-show";
+    description = "Tools for working with derived `Show` instances and generic inspection of values";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
+  };
+})