summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJeremy Huffman <jeremy@jeremyhuffman.com>2014-11-24 20:38:15 -0500
committerJeremy Huffman <jeremy@jeremyhuffman.com>2014-11-25 21:56:19 -0500
commit1a516da865255e755c9c4686fcba8d0387c909ac (patch)
tree53367d248e1f8f610d24cec6ecee89c668d3ad59 /pkgs
parent35bd5e6d0dd835de93415bfdea96896063986411 (diff)
downloadnixlib-1a516da865255e755c9c4686fcba8d0387c909ac.tar
nixlib-1a516da865255e755c9c4686fcba8d0387c909ac.tar.gz
nixlib-1a516da865255e755c9c4686fcba8d0387c909ac.tar.bz2
nixlib-1a516da865255e755c9c4686fcba8d0387c909ac.tar.lz
nixlib-1a516da865255e755c9c4686fcba8d0387c909ac.tar.xz
nixlib-1a516da865255e755c9c4686fcba8d0387c909ac.tar.zst
nixlib-1a516da865255e755c9c4686fcba8d0387c909ac.zip
haskell-distributed-process-monad-control add from Hackage
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/distributed-process-monad-control/default.nix20
-rw-r--r--pkgs/top-level/haskell-packages.nix2
2 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/distributed-process-monad-control/default.nix b/pkgs/development/libraries/haskell/distributed-process-monad-control/default.nix
new file mode 100644
index 000000000000..14adad138441
--- /dev/null
+++ b/pkgs/development/libraries/haskell/distributed-process-monad-control/default.nix
@@ -0,0 +1,20 @@
+# This file was auto-generated by cabal2nix. Please do NOT edit manually!
+
+{ cabal, distributedProcess, monadControl, transformers
+, transformersBase
+}:
+
+cabal.mkDerivation (self: {
+  pname = "distributed-process-monad-control";
+  version = "0.5.0";
+  sha256 = "1ja6xwdpssm7wafv2id6c3f49iw7pkks2smk6l1n1dxkh029z8nk";
+  buildDepends = [
+    distributedProcess monadControl transformers transformersBase
+  ];
+  meta = {
+    homepage = "http://haskell-distributed.github.io";
+    description = "Orphan instances for MonadBase and MonadBaseControl";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 497374e2ce75..7a951e89c4e6 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -678,6 +678,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
 
   distributedProcess = callPackage ../development/libraries/haskell/distributed-process {};
 
+  distributedProcessMonadControl = callPackage ../development/libraries/haskell/distributed-process-monad-control {};
+
   distributedProcessP2p = callPackage ../development/libraries/haskell/distributed-process-p2p {};
 
   distributedProcessPlatform = callPackage ../development/libraries/haskell/distributed-process-platform {};