summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/parsec/3.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/parsec/3.nix')
-rw-r--r--pkgs/development/libraries/haskell/parsec/3.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/parsec/3.nix b/pkgs/development/libraries/haskell/parsec/3.nix
new file mode 100644
index 000000000000..23413700ad4f
--- /dev/null
+++ b/pkgs/development/libraries/haskell/parsec/3.nix
@@ -0,0 +1,12 @@
+{cabal,mtl}:
+
+cabal.mkDerivation (self : {
+  pname = "parsec";
+  version = "3.0.0"; # Haskell Platform 2009.0.0
+  sha256 = "0fqryy09y8h7z0hlayg5gpavghgwa0g3bldynwl17ks8l87ykj7a";
+  propagatedBuildInputs = [mtl];
+  meta = {
+    description = "Monadic parser combinators";
+  };
+})  
+