about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghcjs.nix
blob: 000a0647bef1c44aef00f068cf3a9522f621d5a4 (plain) (blame)
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
47
48
49
{ pkgs }:

with import ./lib.nix { inherit pkgs; };

self: super: {

  # This is the list of packages that are built into a booted ghcjs installation
  # It can be generated with the command:
  # nix-shell '<nixpkgs>' -A pkgs.haskellPackages_ghcjs.ghc --command "ghcjs-pkg list | sed -n 's/^    \(.*\)-\([0-9.]*\)$/\1_\2/ p' | sed 's/\./_/g' | sed 's/-\(.\)/\U\1/' | sed 's/^\([^_]*\)\(.*\)$/\1 = null;/'"
  Cabal = null;
  aeson = null;
  array = null;
  async = null;
  attoparsec = null;
  base = null;
  binary = null;
  rts = null;
  bytestring = null;
  caseInsensitive = null;
  containers = null;
  deepseq = null;
  directory = null;
  dlist = null;
  extensibleExceptions = null;
  filepath = null;
  ghcPrim = null;
  ghcjsBase = null;
  ghcjsPrim = null;
  hashable = null;
  integerGmp = null;
  mtl = null;
  oldLocale = null;
  oldTime = null;
  parallel = null;
  pretty = null;
  primitive = null;
  process = null;
  scientific = null;
  stm = null;
  syb = null;
  templateHaskell = null;
  text = null;
  time = null;
  transformers = null;
  unix = null;
  unorderedContainers = null;
  vector = null;

}