forked from IntersectMBO/cardano-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
281 lines (266 loc) · 11.9 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
{
description = "cardano-ledger";
inputs = {
haskellNix.url = "github:input-output-hk/haskell.nix";
nixpkgs.follows = "haskellNix/nixpkgs-unstable";
iohkNix.url = "github:input-output-hk/iohk-nix";
flake-utils.url = "github:hamishmack/flake-utils/hkm/nested-hydraJobs";
CHaP = {
url = "github:intersectmbo/cardano-haskell-packages?ref=repo";
flake = false;
};
cardano-mainnet-mirror = {
url = "github:input-output-hk/cardano-mainnet-mirror";
flake = false;
};
# non-flake nix compatibility
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = inputs: let
supportedSystems = [
"x86_64-linux"
"x86_64-darwin"
# "aarch64-linux" - disable these temporarily because the build is broken
"aarch64-darwin"
];
in
inputs.flake-utils.lib.eachSystem supportedSystems (
system: let
# setup our nixpkgs with the haskell.nix overlays, and the iohk-nix
# overlays...
nixpkgs = import inputs.nixpkgs {
overlays = [
# our local packages.
(import ./nix/pkgs.nix)
# iohkNix.overlays.crypto provide libsodium-vrf, libblst and libsecp256k1.
inputs.iohkNix.overlays.crypto
# haskellNix.overlay can be configured by later overlays, so need to come before them.
inputs.haskellNix.overlay
# configure haskell.nix to use iohk-nix crypto librairies.
inputs.iohkNix.overlays.haskell-nix-crypto
];
inherit system;
inherit (inputs.haskellNix) config;
};
inherit (nixpkgs) lib;
# see flake `variants` below for alternative compilers
defaultCompiler = "ghc965";
# We use cabalProject' to ensure we don't build the plan for
# all systems.
cabalProject = nixpkgs.haskell-nix.cabalProject' ({config, ...}: {
src = ./.;
name = "cardano-ledger";
compiler-nix-name = lib.mkDefault defaultCompiler;
# CHaP input map, so we can find CHaP packages (needs to be more
# recent than the index-state we set!). Can be updated with
#
# nix flake lock --update-input CHaP
#
inputMap = {
"https://chap.intersectmbo.org/" = inputs.CHaP;
};
cabalProjectLocal = ''
repository cardano-haskell-packages-local
url: file:${inputs.CHaP}
secure: True
active-repositories: hackage.haskell.org, cardano-haskell-packages-local
'';
shell = {
# force LANG to be UTF-8, otherwise GHC might choke on UTF encoded data.
shellHook = ''
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export CARDANO_MAINNET_MIRROR="${inputs.cardano-mainnet-mirror}/epochs"
'' + lib.optionalString (nixpkgs.glibcLocales != null && nixpkgs.stdenv.hostPlatform.libc == "glibc") ''
export LOCALE_ARCHIVE="${nixpkgs.glibcLocales}/lib/locale/locale-archive"
DEFAULT_PS1="\n\[\033[1;32m\][nix-shell:\w]\$\[\033[0m\] "
prompt() {
local EXIT="$?"
if [ $EXIT != 0 ]; then
PS1="$DEFAULT_PS1\[\033[1;31m\]($EXIT)\[\033[00m\] "
else
PS1="$DEFAULT_PS1"
fi
}
PROMPT_COMMAND=prompt
'';
# tools we want in our shell, from hackage
tools =
{
cabal = "3.10.3.0";
ghcid = "0.8.9";
}
// lib.optionalAttrs (config.compiler-nix-name == defaultCompiler) {
# tools that work only with default compiler
fourmolu = "0.14.0.0";
hlint = "3.6.1";
haskell-language-server = "2.7.0.0";
};
# and from nixpkgs or other inputs
nativeBuildInputs = with nixpkgs;
[
(python3.withPackages (ps: with ps; [sphinx sphinx_rtd_theme recommonmark sphinx-markdown-tables sphinxemoji]))
haskellPackages.implicit-hie
];
# disable Hoogle until someone request it
withHoogle = false;
# Skip cross compilers for the shell
crossPlatforms = _: [];
};
# package customizations as needed. Where cabal.project is not
# specific enough, or doesn't allow setting these.
modules = [
({pkgs, ...}: {
# packages.plutus-core.components.library.ghcOptions = [ "-fexternal-interpreter" ];
# uncomment if necessary when profiling
packages.byron-spec-chain.configureFlags = ["--ghc-option=-Werror"];
packages.byron-spec-ledger.configureFlags = ["--ghc-option=-Werror"];
packages.delegation.configureFlags = ["--ghc-option=-Werror"];
packages.non-integral.configureFlags = ["--ghc-option=-Werror"];
packages.cardano-ledger-shelley.configureFlags = ["--ghc-option=-Werror"];
packages.cardano-ledger-shelley-ma.configureFlags = ["--ghc-option=-Werror"];
packages.cardano-ledger-shelley-ma-test.configureFlags = ["--ghc-option=-Werror"];
packages.small-steps.configureFlags = ["--ghc-option=-Werror"];
packages.cardano-ledger-byron = {
configureFlags = ["--ghc-option=-Werror"];
components = {
tests.cardano-ledger-byron-test = {
preCheck = ''
export CARDANO_MAINNET_MIRROR="${inputs.cardano-mainnet-mirror}/epochs"
cp ${./eras/byron/ledger/impl/mainnet-genesis.json} ./mainnet-genesis.json
'';
testFlags = ["--scenario=ContinuousIntegration"];
};
};
};
})
({pkgs, ...}:
lib.mkIf pkgs.stdenv.hostPlatform.isUnix {
packages.cardano-ledger-shelley.components.tests.tests.build-tools = [pkgs.cddl pkgs.cbor-diag];
packages.cardano-ledger-allegra.components.tests.tests.build-tools = [pkgs.cddl pkgs.cbor-diag];
packages.cardano-ledger-mary.components.tests.tests.build-tools = [pkgs.cddl pkgs.cbor-diag];
packages.cardano-ledger-alonzo.components.tests.tests.build-tools = [pkgs.cddl pkgs.cbor-diag];
packages.cardano-ledger-babbage.components.tests.tests.build-tools = [pkgs.cddl pkgs.cbor-diag];
packages.cardano-ledger-conway.components.tests.tests.build-tools = [pkgs.cddl pkgs.cbor-diag];
packages.cardano-protocol-tpraos.components.tests.tests.build-tools = [pkgs.cddl pkgs.cbor-diag];
})
({pkgs, ...}:
lib.mkIf pkgs.stdenv.hostPlatform.isWindows {
packages.set-algebra.components.tests.tests.buildable = lib.mkForce false;
packages.plutus-preprocessor.buildable = lib.mkForce false;
packages.cardano-ledger-test.buildable = lib.mkForce false;
packages.cardano-ledger-shelley.buildable = lib.mkForce false;
packages.cardano-ledger-allegra.buildable = lib.mkForce false;
packages.cardano-ledger-mary.buildable = lib.mkForce false;
packages.cardano-ledger-alonzo.buildable = lib.mkForce false;
packages.cardano-ledger-babbage.buildable = lib.mkForce false;
packages.cardano-ledger-conway.buildable = lib.mkForce false;
packages.cardano-protocol-tpraos.buildable = lib.mkForce false;
})
];
});
# ... and construct a flake from the cabal project
flake =
cabalProject.flake (
lib.optionalAttrs (system == "x86_64-linux") {
# on linux, build/test other supported compilers
variants = lib.genAttrs ["ghc8107" "ghc982"] (compiler-nix-name: {
inherit compiler-nix-name;
});
}
);
in
lib.recursiveUpdate flake rec {
project = cabalProject;
# add a required job, that's basically all hydraJobs.
hydraJobs =
nixpkgs.callPackages inputs.iohkNix.utils.ciJobsAggregates
{
ciJobs =
flake.hydraJobs
// {
inherit (legacyPackages) doc specs;
# This ensure hydra send a status for the required job (even if no change other than commit hash)
revision = nixpkgs.writeText "revision" (inputs.self.rev or "dirty");
};
};
legacyPackages = rec {
inherit cabalProject nixpkgs;
# also provide hydraJobs through legacyPackages to allow building without system prefix:
inherit hydraJobs;
doc.site = ((import ./doc/flake.nix).outputs {main = inputs.self;}).packages.${system}.default;
#
# PDF builds of LaTeX documentation.
#
# To download the latest PDF build from Hydra, use this link:
# https://github.com/intersectmbo/cardano-ledger/releases/latest/download/NAME.pdf
#
# To get a shell where you can run pdflatex to build it yourself, use:
# cd <spec directory>
# nix develop
#
# To build all specs locally with Nix:
# nix build .#specs -o spec
#
specs = nixpkgs.symlinkJoin {
name = "cardano-ledger-specs";
# XXX: make use of flake relative path inputs once this is fixed: https://github.com/NixOS/nix/issues/6352
# (so that we can ditch flake-compat.nix)
paths = map (d: ((import "${./.}/${d}/flake.nix").outputs {main = inputs.self;}).packages.${system}.default) [
"eras/byron/ledger/formal-spec"
"eras/byron/chain/formal-spec"
"eras/shelley/formal-spec"
"eras/shelley-ma/formal-spec"
"eras/alonzo/formal-spec"
"eras/babbage/formal-spec"
"eras/shelley/design-spec"
"docs/small-step-semantics"
"docs/pool-ranking"
"docs/non-integer-calculations"
"eras/byron/cddl-spec"
];
};
};
devShells = let
mkDevShells = p: {
# `nix develop .#profiling` (or `.#ghc965.profiling): a shell with profiling enabled
profiling = (p.appendModule {modules = [{enableLibraryProfiling = true;}];}).shell;
# `nix develop .#pre-commit` (or `.#ghc965.pre-commit): a shell with pre-commit enabled
pre-commit = let
pre-commit-check = inputs.pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
fourmolu.enable = true;
};
};
in
p.shell.overrideAttrs (old: {
shellHook = old.shellHook + pre-commit-check.shellHook;
});
};
in
mkDevShells cabalProject
# Additional shells for every GHC version supported by haskell.nix, eg. `nix develop .#ghc8107`
// lib.mapAttrs (compiler-nix-name: _: let
p = cabalProject.appendModule {inherit compiler-nix-name;};
in
p.shell // (mkDevShells p))
nixpkgs.haskell-nix.compiler;
# formatter used by nix fmt
formatter = nixpkgs.alejandra;
}
);
nixConfig = {
extra-substituters = [
"https://cache.iog.io"
];
extra-trusted-public-keys = [
"hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
];
allow-import-from-derivation = true;
};
}