mirror of
https://github.com/coot/free-category.git
synced 2024-11-23 09:55:43 +03:00
16 lines
509 B
Nix
16 lines
509 B
Nix
|
{ mkDerivation, base, HUnit, stdenv, stm, test-framework
|
||
|
, test-framework-hunit
|
||
|
}:
|
||
|
mkDerivation {
|
||
|
pname = "async";
|
||
|
version = "2.1.1.1";
|
||
|
sha256 = "cd83e471466ea6885b2e8fb60f452db3ac3fdf3ea2d6370aa1e071ebc37544e2";
|
||
|
libraryHaskellDepends = [ base stm ];
|
||
|
testHaskellDepends = [
|
||
|
base HUnit test-framework test-framework-hunit
|
||
|
];
|
||
|
homepage = "https://github.com/simonmar/async";
|
||
|
description = "Run IO operations asynchronously and wait for their results";
|
||
|
license = stdenv.lib.licenses.bsd3;
|
||
|
}
|