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-08-23 17:41:47 +02:00
|
|
|
version = "2.0.1.2";
|
|
|
|
sha256 = "03mmrs1xrw91pv9xpas8acxvrh4j6bq5l24bqk4vmaq2pdy9snn3";
|
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
|
|
|
};
|
|
|
|
})
|