forked from input-output-hk/marlowe-cardano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
27 lines (23 loc) · 864 Bytes
/
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
# 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 = "Marlowe Cardano implementation";
inputs = {
cardano-world.url = "github:input-output-hk/cardano-world/d22f50fc77d23e2612ca2b313a098dd0b48834d4";
std.url = "github:divnix/std";
std.inputs.n2c.follows = "n2c";
iogx.url = "github:input-output-hk/iogx";
# Use upstream when https://github.com/nlewo/nix2container/pull/82 is merged
n2c.url = "github:shlevy/nix2container/no-Size-on-dir";
};
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;
};
}