2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, HUnit, stm, testFramework, testFrameworkHunit }:
|
2011-08-05 19:02:16 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-05 19:02:16 +01:00
|
|
|
pname = "async";
|
2012-10-23 16:17:48 +01:00
|
|
|
version = "2.0.1.4";
|
|
|
|
sha256 = "1hi40bjwpl65mz7zj0sgh16bp9dwafbm5ysi2q8fzwwq5l0zxpa1";
|
2012-06-13 13:57:29 +01:00
|
|
|
buildDepends = [ stm ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ HUnit testFramework testFrameworkHunit ];
|
2013-12-03 21:04:37 +00:00
|
|
|
jailbreak = true;
|
2011-08-05 19:02:16 +01:00
|
|
|
meta = {
|
2012-06-13 13:57:29 +01:00
|
|
|
homepage = "https://github.com/simonmar/async";
|
|
|
|
description = "Run IO operations asynchronously and wait for their results";
|
2011-08-05 19:02:16 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-10 00:00:20 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-05 19:02:16 +01:00
|
|
|
};
|
|
|
|
})
|