mirror of
https://github.com/coot/free-category.git
synced 2024-11-23 09:55:43 +03:00
21 lines
763 B
Nix
21 lines
763 B
Nix
|
{ mkDerivation, async, base, constraints, criterion, deepseq, HUnit
|
||
|
, lifted-base, monad-control, mtl, stdenv, tasty, tasty-hunit
|
||
|
, tasty-th, transformers-base
|
||
|
}:
|
||
|
mkDerivation {
|
||
|
pname = "lifted-async";
|
||
|
version = "0.9.3.3";
|
||
|
sha256 = "ae37d9cab3dd21aa65e4722c5268585d2d555fea1e8870920e7e567160240dbf";
|
||
|
libraryHaskellDepends = [
|
||
|
async base constraints lifted-base monad-control transformers-base
|
||
|
];
|
||
|
testHaskellDepends = [
|
||
|
async base HUnit lifted-base monad-control mtl tasty tasty-hunit
|
||
|
tasty-th
|
||
|
];
|
||
|
benchmarkHaskellDepends = [ async base criterion deepseq ];
|
||
|
homepage = "https://github.com/maoe/lifted-async";
|
||
|
description = "Run lifted IO operations asynchronously and wait for their results";
|
||
|
license = stdenv.lib.licenses.bsd3;
|
||
|
}
|