summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/haskell-src-exts/1.13.5.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/haskell-src-exts/1.13.5.nix')
-rw-r--r--pkgs/development/libraries/haskell/haskell-src-exts/1.13.5.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/haskell-src-exts/1.13.5.nix b/pkgs/development/libraries/haskell/haskell-src-exts/1.13.5.nix
new file mode 100644
index 000000000000..16f6d6362a1e
--- /dev/null
+++ b/pkgs/development/libraries/haskell/haskell-src-exts/1.13.5.nix
@@ -0,0 +1,16 @@
+{ cabal, cpphs, happy }:
+
+cabal.mkDerivation (self: {
+  pname = "haskell-src-exts";
+  version = "1.13.5";
+  sha256 = "03bzhfp7l9f5hh61qdrr83331nbfgj3jfsfylwmnmcknpisdqnkw";
+  buildDepends = [ cpphs ];
+  buildTools = [ happy ];
+  meta = {
+    homepage = "http://code.haskell.org/haskell-src-exts";
+    description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
+  };
+})