blob: b6e59ceb3b81b518d95ce5cfb19cc73ac97dec1f (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
{ nixpkgs }:
with nixpkgs;
with nixpkgs.lib;
let
# provided by .envrc
root = builtins.getEnv "BIZ_ROOT";
# general functions to put in a lib
lines = s: strings.splitString "\n" s;
removeNull = ls: builtins.filter (x: x != null) ls;
depsToPackageSet = packageSet: deps:
attrsets.attrVals deps packageSet;
# returns true if a is a subset of b, where a and b are attrsets
subset = a: b: builtins.all
(x: builtins.elem x b) a;
allDeps = import ./deps.nix;
in {
buildGhc = main:
let
relpath = builtins.replaceStrings ["${root}/"] [""] (builtins.toString main);
module = builtins.replaceStrings ["/" ".hs"] ["." ""] relpath;
content = builtins.readFile main;
exe = builtins.head (lists.flatten (removeNull
(map (builtins.match "^-- : exe ([[:alnum:]._-]*)$")
(lines content))));
deps = lists.flatten (removeNull
(map (builtins.match "^-- : dep ([[:alnum:]._-]*)$")
(lines content)));
ghc = pkgs.haskell.packages.ghc865.ghcWithHoogle (hp:
if (subset deps allDeps)
then depsToPackageSet hp deps
else throw
"missing from deps.nix: ${toString (lib.lists.subtractLists allDeps deps)}");
in stdenv.mkDerivation {
name = module;
src = ./.;
nativeBuildInputs = [ ghc ];
strictDeps = true;
buildPhase = ''
mkdir -p $out/bin
# compile with ghc
${ghc}/bin/ghc -Werror -i. \
--make ${main} \
-main-is ${module} \
-o $out/bin/${exe}
'';
# the install process was handled above
installPhase = "exit 0";
} // { env = ghc; };
buildGhcjs = main:
let
relpath = builtins.replaceStrings ["${root}/"] [""] (builtins.toString main);
module = builtins.replaceStrings ["/" ".hs"] ["." ""] relpath;
content = builtins.readFile main;
exe = builtins.head (lists.flatten (removeNull
(map (builtins.match "^-- : exe ([[:alnum:]._-]*)$")
(lines content))));
deps = lists.flatten (removeNull
(map (builtins.match "^-- : dep ([[:alnum:]._-]*)$")
(lines content)));
ghcjs = pkgs.haskell.packages.ghcjs.ghcWithPackages (hp:
if (subset deps allDeps)
then depsToPackageSet hp deps
else throw
"missing from deps.nix: ${toString (lib.lists.subtractLists allDeps deps)}");
in stdenv.mkDerivation {
name = module;
src = ./.;
nativeBuildInputs = [ ghcjs ];
strictDeps = true;
buildPhase = ''
mkdir -p $out/static
# compile with ghcjs
${ghcjs}/bin/ghcjs -Werror -i. \
--make ${main} \
-main-is ${module} \
-o ${exe}
# optimize js output
${pkgs.closurecompiler}/bin/closure-compiler \
${exe}/all.js > $out/static/${exe}
'';
installPhase = "exit 0";
} // { env = ghcjs; };
globalGhc = pkgs.haskell.packages.ghc865.ghcWithHoogle (hp: depsToPackageSet hp allDeps);
}
|