Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ mkDerivation
, async
, base
, containers
, criterion
, lib
, safe-exceptions
, tasty
, tasty-hunit
, unliftio
, unliftio-core
}:
mkDerivation {
pname = "async-timer";
version = "0.2.0.0";
sha256 = "0632bfc4c141aa47c461747b3edb59f76ef5523a66ac03be0f32868a5e04cee0";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
async
base
safe-exceptions
unliftio
unliftio-core
];
testHaskellDepends = [
async
base
containers
criterion
tasty
tasty-hunit
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/mtesseract/async-timer#readme";
description = "Provides API for timer based execution of IO actions";
license = lib.licenses.bsd3;
broken = false;
}