-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkernels.nix
More file actions
46 lines (36 loc) · 782 Bytes
/
kernels.nix
File metadata and controls
46 lines (36 loc) · 782 Bytes
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
{pkgs, ...}:
{
kernel.python.minimal = {
enable = true;
};
kernel.haskell.deltaq = {
enable = true;
nixpkgs = pkgs;
haskellCompiler = "ghc94";
extraHaskellPackages = p: with p; [
# Required for charts in iHaskell kernel
ihaskell
ihaskell-charts
Chart-cairo
# Packages
deltaq
probability-polynomial
# Library dependencies
Chart
exact-combinatorics
graphviz
lattices
# Test dependencies, not strictly needed but perhaps convenient
hspec
hspec-discover
QuickCheck
# Benchmark dependencies, not strictly needed but perhaps convenient
cassava
criterion
hvega
optparse-applicative
statistics
vector
];
};
}