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
{ mkDerivation
, QuickCheck
, base
, deepseq
, hashable
, lib
, mtl
, quickcheck-instances
, rerebase
, strict-list
, tasty
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "deque";
version = "0.4.4";
sha256 = "d646d82001cc6b1f17a969ab1d479c2f65f31547c1741dfd7d7c12f7709319f4";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq hashable mtl strict-list ];
testHaskellDepends = [
QuickCheck
quickcheck-instances
rerebase
tasty
tasty-hunit
tasty-quickcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/nikita-volkov/deque";
description = "Double-ended queues";
license = lib.licenses.mit;
broken = false;
}