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