haskell-lifted-async: add version 0.1.0

This commit is contained in:
Peter Simons 2013-12-02 11:59:57 +01:00
parent 84a050811f
commit a64262ea3d
2 changed files with 23 additions and 1 deletions

View File

@ -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;
};
})

View File

@ -1444,6 +1444,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
libxmlSax = callPackage ../development/libraries/haskell/libxml-sax {};
liftedAsync = callPackage ../development/libraries/haskell/lifted-async {};
liftedBase = callPackage ../development/libraries/haskell/lifted-base {};
linear = callPackage ../development/libraries/haskell/linear {};