-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
39 lines (29 loc) · 900 Bytes
/
flake.nix
File metadata and controls
39 lines (29 loc) · 900 Bytes
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
# This file is part of the IOGX template and is documented at the link below:
# https://www.github.com/input-output-hk/iogx#31-flakenix
{
description = "Marconi Chain Indexer";
inputs = {
iogx.url = "github:input-output-hk/iogx";
iogx.inputs.CHaP.follows = "CHaP_2";
CHaP_2 = {
url = "github:input-output-hk/cardano-haskell-packages?ref=repo";
flake = false;
};
# Used to provide the cardano-node and cardano-cli executables.
cardano-node = {
url = "github:input-output-hk/cardano-node";
flake = false;
};
};
outputs = inputs: inputs.iogx.lib.mkFlake inputs ./.;
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;
accept-flake-config = true;
};
}