summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-05-24 10:54:33 +0200
committerPeter Simons <simons@cryp.to>2014-05-24 12:00:58 +0200
commitecaf15c324987c96014a44c85fd19e5d817ff042 (patch)
tree128d354c2765d7e1c66f4dd013d742178174a51d /pkgs/development/libraries/haskell
parent9b86fb4ea490a17167802c4df70f8fc0c110a711 (diff)
downloadnixpkgs-ecaf15c324987c96014a44c85fd19e5d817ff042.tar
nixpkgs-ecaf15c324987c96014a44c85fd19e5d817ff042.tar.gz
nixpkgs-ecaf15c324987c96014a44c85fd19e5d817ff042.tar.bz2
nixpkgs-ecaf15c324987c96014a44c85fd19e5d817ff042.tar.lz
nixpkgs-ecaf15c324987c96014a44c85fd19e5d817ff042.tar.xz
nixpkgs-ecaf15c324987c96014a44c85fd19e5d817ff042.tar.zst
nixpkgs-ecaf15c324987c96014a44c85fd19e5d817ff042.zip
haskell-attoparsec: add version 0.11.3.4
Diffstat (limited to 'pkgs/development/libraries/haskell')
-rw-r--r--pkgs/development/libraries/haskell/attoparsec/0.11.3.4.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/attoparsec/0.11.3.4.nix b/pkgs/development/libraries/haskell/attoparsec/0.11.3.4.nix
new file mode 100644
index 00000000000..4af501e7dca
--- /dev/null
+++ b/pkgs/development/libraries/haskell/attoparsec/0.11.3.4.nix
@@ -0,0 +1,20 @@
+{ cabal, deepseq, QuickCheck, scientific, testFramework
+, testFrameworkQuickcheck2, text
+}:
+
+cabal.mkDerivation (self: {
+  pname = "attoparsec";
+  version = "0.11.3.4";
+  sha256 = "1zahmkb0n7jz0di35x3r8s0xnfg1awqybh2x2zicxbwazl4f53hi";
+  buildDepends = [ deepseq scientific text ];
+  testDepends = [
+    QuickCheck testFramework testFrameworkQuickcheck2 text
+  ];
+  meta = {
+    homepage = "https://github.com/bos/attoparsec";
+    description = "Fast combinator parsing for bytestrings and text";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
+  };
+})