summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/monad-par/0.3.4.2.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/monad-par/0.3.4.2.nix')
-rw-r--r--pkgs/development/libraries/haskell/monad-par/0.3.4.2.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/monad-par/0.3.4.2.nix b/pkgs/development/libraries/haskell/monad-par/0.3.4.2.nix
new file mode 100644
index 000000000000..ab875b34c360
--- /dev/null
+++ b/pkgs/development/libraries/haskell/monad-par/0.3.4.2.nix
@@ -0,0 +1,28 @@
+{ cabal, abstractDeque, abstractPar, deepseq, HUnit, monadParExtras
+, mtl, mwcRandom, parallel, QuickCheck, testFramework
+, testFrameworkHunit, testFrameworkQuickcheck2, testFrameworkTh
+, time
+}:
+
+cabal.mkDerivation (self: {
+  pname = "monad-par";
+  version = "0.3.4.2";
+  sha256 = "1k10m4w2g92psahsvcyi98sc31wg5anijp46lbsipi2r2gxxc7bs";
+  buildDepends = [
+    abstractDeque abstractPar deepseq monadParExtras mtl mwcRandom
+    parallel
+  ];
+  testDepends = [
+    abstractDeque abstractPar deepseq HUnit monadParExtras mtl
+    mwcRandom QuickCheck testFramework testFrameworkHunit
+    testFrameworkQuickcheck2 testFrameworkTh time
+  ];
+  doCheck = false;
+  meta = {
+    homepage = "https://github.com/simonmar/monad-par";
+    description = "A library for parallel programming based on a monad";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
+  };
+})