-
Notifications
You must be signed in to change notification settings - Fork 12
/
flake.nix
147 lines (131 loc) · 5.14 KB
/
flake.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
description = "Nix derivations for PureScript core language tools.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-23.05";
slimlock.url = "github:thomashoneyman/slimlock";
slimlock.inputs.nixpkgs.follows = "nixpkgs";
flake-compat.url = "github:edolstra/flake-compat";
flake-compat.flake = false;
};
outputs = {
self,
nixpkgs,
slimlock,
flake-compat,
}: let
inherit (nixpkgs) lib;
eachDefaultSystem = perSystem:
lib.pipe ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"] [
(map (sys: builtins.mapAttrs (_: value: {${sys} = value;}) (perSystem sys)))
(builtins.foldl' nixpkgs.lib.recursiveUpdate {})
];
in
eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
overlays = [
self.overlays.default
slimlock.overlays.default
];
};
in {
# A warning-free top-level flake output suitable for running unit tests via
# e.g. `nix eval .#lib`.
lib = pkgs.callPackage ./nix/tests {};
packages =
{
inherit (pkgs) purs purs-unstable spago spago-unstable purs-tidy purs-tidy-unstable purs-backend-es purs-backend-es-unstable purescript-language-server purescript-language-server-unstable;
}
// pkgs.purs-bin
// pkgs.spago-bin
// pkgs.purs-tidy-bin
// pkgs.purs-backend-es-bin
// pkgs.purescript-language-server-bin;
apps = let
mkApp = bin: {
type = "app";
program = "${bin}/bin/${bin.pname or bin.name}";
};
apps = pkgs.lib.mapAttrs (_: mkApp) self.packages.${system};
scripts = {generate = mkApp (pkgs.callPackage ./generate {});};
in
apps // scripts;
checks = let
package-checks =
lib.mapAttrs (key: bin: let
name = bin.pname or bin.name;
version = bin.version or "0.0.0";
in
pkgs.runCommand "test-${name}-${version}" {} ''
touch $out
set -e
set -x
# Some package versions are not supported on some systems, ie. the
# "stable" version of Spago is not supported on aarch64.
if [ ${builtins.toString (builtins.hasAttr "unsupported" bin)} ]; then
echo "Skipping ${bin.name} because it is not supported on ${system}"
exit 0
fi
# Different packages at different versions use different 'version'
# flags to print their version
if [ ${builtins.toString (name == "spago" && pkgs.lib.versionOlder version "0.90.0")} ]; then
VERSION="$(${lib.getExe bin} version --global-cache skip)"
# spago@0.93.21 incorrectly reports its version
elif [ ${builtins.toString (name == "spago" && version == "0.93.21")} ]; then
VERSION="0.93.21"
else
# spago-next writes --version to stderr, oddly enough, so we need to
# capture both in the VERSION var.
VERSION="$(${lib.getExe bin} --version 2>&1)"
fi
# purs-tidy includes a 'v' prefix in its output beginning with version 0.9.0
if [ ${builtins.toString (name == "purs-tidy" && !(pkgs.lib.versionOlder version "0.9.0"))} ]; then
EXPECTED_VERSION="v${version}"
# purs-backend-es always includes it
elif [ ${builtins.toString (name == "purs-backend-es")} ]; then
EXPECTED_VERSION="v${version}"
else
EXPECTED_VERSION="${version}"
fi
echo "$VERSION should match expected output $EXPECTED_VERSION"
test "$VERSION" = "$EXPECTED_VERSION"
'')
# TODO: Remove once the purescript build of spago is stable
(pkgs.lib.filterAttrs (k: v: !(k == "spago" && system == "aarch64-darwin")) self.packages.${system});
example-checks = pkgs.callPackages ./nix/examples {};
script-checks = {
generate = let
bin = pkgs.callPackage ./generate {};
manifests = ./manifests;
in
pkgs.runCommand "test-generate" {} ''
mkdir -p $out/bin
set -e
set -x
cp ${bin}/bin/${bin.name} $out/bin/test-generate
${bin}/bin/${bin.name} verify ${manifests}
'';
};
in
package-checks // example-checks // script-checks;
devShells = {
default = pkgs.mkShell {
name = "purescript-overlay";
buildInputs = [
# FIXME: Change when lockfile format stabilizes
self.packages.${system}.spago-0_93_37
self.packages.${system}.purs-unstable
self.packages.${system}.purs-tidy-unstable
self.packages.${system}.purs-backend-es-unstable
self.packages.${system}.purescript-language-server-unstable
pkgs.nodejs
pkgs.prefetch-npm-deps
];
};
};
formatter = pkgs.alejandra;
})
// {
overlays.default = import ./overlay.nix;
};
}