2012-06-13 14:57:29 +02:00
|
|
|
{ cabal, stm }:
|
2011-08-05 20:02:16 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-05 20:02:16 +02:00
|
|
|
pname = "async";
|
2012-09-11 12:15:34 +02:00
|
|
|
version = "2.0.1.3";
|
|
|
|
sha256 = "1rbjr6xw5sp8npw17fxg0942kikssv2hyci2sy26r0na98483mkh";
|
2012-06-13 14:57:29 +02:00
|
|
|
buildDepends = [ stm ];
|
2011-08-05 20:02:16 +02:00
|
|
|
meta = {
|
2012-06-13 14:57:29 +02:00
|
|
|
homepage = "https://github.com/simonmar/async";
|
|
|
|
description = "Run IO operations asynchronously and wait for their results";
|
2011-08-05 20:02:16 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-05 20:02:16 +02:00
|
|
|
};
|
|
|
|
})
|