-
Notifications
You must be signed in to change notification settings - Fork 91
/
flake.nix
35 lines (35 loc) · 1.14 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
{
description = "ZombieNet aim to be a testing framework for substrate based blockchains, providing a simple cli tool that allow users to spawn and test ephemeral Substrate based networks";
inputs = {
# follow official nixpkgs release so that likely one already have the required dependencies in store
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
flake-parts = {
url = "github:hercules-ci/flake-parts";
};
process-compose = {
url = "github:Platonic-Systems/process-compose-flake";
};
};
outputs = inputs @ {
self,
flake-parts,
...
}:
# we used flake-parts to iterate over system and also to ensure nix dev scales
let
outputs = flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
inputs.process-compose.flakeModule
./flake-module.nix
];
systems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin"];
};
in
outputs
// {
# conventional injecting so that can access via `pkgs.zombienet` for usage in other flakes
overlays.default = final: prev: {
zombienet = outputs.packages.${prev.system};
};
};
}