-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefault.nix
34 lines (34 loc) · 1.5 KB
/
default.nix
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
{ mkDerivation, aeson, base, binary, bits, cereal, cereal-vector
, containers, criterion, deepseq, DPutils, hashable, hashtables
, lens, lib, log-domain, mtl, OrderedBits, primitive, QuickCheck
, smallcheck, tasty, tasty-quickcheck, tasty-smallcheck, tasty-th
, text, unordered-containers, vector, vector-algorithms
, vector-binary-instances, vector-th-unbox
}:
mkDerivation {
pname = "PrimitiveArray";
version = "0.10.2.0";
src = ./.;
libraryHaskellDepends = [
aeson base binary bits cereal cereal-vector containers deepseq
DPutils hashable hashtables lens log-domain mtl OrderedBits
primitive QuickCheck smallcheck text unordered-containers vector
vector-algorithms vector-binary-instances vector-th-unbox
];
testHaskellDepends = [
aeson base binary bits cereal cereal-vector containers deepseq
DPutils hashable hashtables lens log-domain mtl OrderedBits
primitive QuickCheck smallcheck tasty tasty-quickcheck
tasty-smallcheck tasty-th text unordered-containers vector
vector-algorithms vector-binary-instances vector-th-unbox
];
benchmarkHaskellDepends = [
aeson base binary bits cereal cereal-vector containers criterion
deepseq DPutils hashable hashtables lens log-domain mtl OrderedBits
primitive QuickCheck smallcheck text unordered-containers vector
vector-algorithms vector-binary-instances vector-th-unbox
];
homepage = "https://github.com/choener/PrimitiveArray";
description = "Efficient multidimensional arrays";
license = lib.licenses.bsd3;
}