-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathflake.nix
More file actions
38 lines (36 loc) · 1.55 KB
/
Copy pathflake.nix
File metadata and controls
38 lines (36 loc) · 1.55 KB
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
{
inputs = {
CHaP = {
url = "github:IntersectMBO/cardano-haskell-packages?ref=repo";
flake = false;
};
selfci.url = "git+https://radicle.dpc.pw/z2tDzYbAXxTQEKTGFVwiJPajkbeDU.git";
aiken.url = "github:aiken-lang/aiken/v1.1.9";
cardano-node.url = "github:intersectmbo/cardano-node/11.0.1";
flake-parts.url = "github:hercules-ci/flake-parts";
haskellNix.url = "github:input-output-hk/haskell.nix";
hydra-coding-standards.url = "github:cardano-scaling/hydra-coding-standards/0.8.0";
import-tree.url = "github:vic/import-tree";
iohk-nix.url = "github:input-output-hk/iohk-nix";
mithril.url = "github:input-output-hk/mithril/2617.0";
nixpkgs.follows = "haskellNix/nixpkgs";
nixpkgs-2411.url = "github:NixOS/nixpkgs/nixos-24.11";
nix-npm-buildpackage.url = "github:serokell/nix-npm-buildpackage";
process-compose-flake.url = "github:Platonic-Systems/process-compose-flake";
rust-accumulator.url = "github:cardano-scaling/rust-accumulator";
nix-fast-build.url = "github:Mic92/nix-fast-build";
pumba.url = "github:noonio/pumba/noon/add-flake";
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./nix);
nixConfig = {
extra-substituters = [
"https://cache.iog.io"
"https://cardano-scaling.cachix.org"
];
extra-trusted-public-keys = [
"hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
"cardano-scaling.cachix.org-1:QNK4nFrowZ/aIJMCBsE35m+O70fV6eewsBNdQnCSMKA="
];
allow-import-from-derivation = true;
};
}