blob: 3d2268de643f1d1dbef5af0002d386dd7a57e079 (
plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{ pkgs, haskellLib }:
let
inherit (pkgs) lib;
in
with haskellLib;
# cabal2nix doesn't properly add dependencies conditional on arch(javascript)
(self: super: {
ghcjs-base = addBuildDepends (with self; [
aeson
attoparsec
dlist
hashable
primitive
scientific
unordered-containers
vector
]) super.ghcjs-base;
ghcjs-dom = addBuildDepend self.ghcjs-dom-javascript super.ghcjs-dom;
ghcjs-dom-javascript = addBuildDepend self.ghcjs-base super.ghcjs-dom-javascript;
jsaddle = addBuildDepend self.ghcjs-base super.jsaddle;
jsaddle-dom = addBuildDepend self.ghcjs-base super.jsaddle-dom;
jsaddle-warp = overrideCabal (drv: {
libraryHaskellDepends = [ ];
testHaskellDepends = [ ];
}) super.jsaddle-warp;
entropy = addBuildDepend self.ghcjs-dom super.entropy;
# https://gitlab.haskell.org/ghc/ghc/-/issues/25083#note_578275
patch = haskellLib.disableParallelBuilding super.patch;
reflex-dom-core = haskellLib.disableParallelBuilding super.reflex-dom-core;
# Marked as dontDistribute in -common because of jsaddle-webkit2gtk
# which requires an unmaintained version of libsoup. Since this dep
# is unnecessary for the JS backend, we can re-enable these jobs here.
reflex-dom = doDistribute (
super.reflex-dom.override (drv: {
jsaddle-webkit2gtk = null;
})
);
reflex-localize-dom = doDistribute super.reflex-localize-dom;
trasa-reflex = doDistribute super.trasa-reflex;
miso-examples = pkgs.lib.pipe super.miso-examples [
(addBuildDepends (
with self;
[
aeson
ghcjs-base
jsaddle-warp
miso
servant
]
))
];
# https://github.com/haskellari/splitmix/pull/75
splitmix = appendPatch (pkgs.fetchpatch {
url = "https://github.com/haskellari/splitmix/commit/7ffb3158f577c48ab5de774abea47767921ef3e9.patch";
sha256 = "sha256-n2q4FGf/pPcI1bhb9srHjHLzaNVehkdN6kQgL0F4MMg=";
}) super.splitmix;
# See https://gitlab.haskell.org/ghc/ghc/-/issues/26019#note_621324, without this flag the build OOMs
SHA = haskellLib.appendConfigureFlag "--ghc-option=-fignore-interface-pragmas" super.SHA;
})
|