-
Notifications
You must be signed in to change notification settings - Fork 7
/
flake.nix
45 lines (34 loc) · 902 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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 Playground";
inputs = {
iogx.url = "github:input-output-hk/iogx";
n2c.url = "github:nlewo/nix2container";
npmlock2nix = {
url = "github:nix-community/npmlock2nix";
flake = false;
};
std.url = "github:divnix/std";
};
outputs = inputs: inputs.iogx.lib.mkFlake {
inherit inputs;
repoRoot = ./.;
nixpkgsConfig = {
permittedInsecurePackages = [
"python-2.7.18.6"
"nodejs-14.21.3"
"openssl-1.1.1u"
];
};
};
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;
};
}