summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-12-02 11:59:57 +0100
committerPeter Simons <simons@cryp.to>2013-12-02 16:26:26 +0100
commita64262ea3d3e531f1174256c76548150f4c03f8e (patch)
treedf7e74e91360909097627ab17032b2d1fd2ff624 /pkgs/development/libraries
parent84a050811fcd5652a1f8aeac7f217aa064cf7e50 (diff)
downloadnixlib-a64262ea3d3e531f1174256c76548150f4c03f8e.tar
nixlib-a64262ea3d3e531f1174256c76548150f4c03f8e.tar.gz
nixlib-a64262ea3d3e531f1174256c76548150f4c03f8e.tar.bz2
nixlib-a64262ea3d3e531f1174256c76548150f4c03f8e.tar.lz
nixlib-a64262ea3d3e531f1174256c76548150f4c03f8e.tar.xz
nixlib-a64262ea3d3e531f1174256c76548150f4c03f8e.tar.zst
nixlib-a64262ea3d3e531f1174256c76548150f4c03f8e.zip
haskell-lifted-async: add version 0.1.0
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/haskell/lifted-async/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/lifted-async/default.nix b/pkgs/development/libraries/haskell/lifted-async/default.nix
new file mode 100644
index 000000000000..8fbfd1f51b01
--- /dev/null
+++ b/pkgs/development/libraries/haskell/lifted-async/default.nix
@@ -0,0 +1,20 @@
+{ cabal, async, HUnit, liftedBase, monadControl, mtl, testFramework
+, testFrameworkHunit, testFrameworkTh, transformersBase
+}:
+
+cabal.mkDerivation (self: {
+  pname = "lifted-async";
+  version = "0.1.0";
+  sha256 = "09ns06qgnwls6zcqsjvr7ykhpr1w12vq49ix4bkqriarl1q3ap7b";
+  buildDepends = [ async liftedBase monadControl transformersBase ];
+  testDepends = [
+    HUnit liftedBase monadControl mtl testFramework testFrameworkHunit
+    testFrameworkTh
+  ];
+  meta = {
+    homepage = "https://github.com/maoe/lifted-async";
+    description = "Run lifted IO operations asynchronously and wait for their results";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})