forked from mlabs-haskell/tx-village
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
67 lines (56 loc) · 1.96 KB
/
Copy pathflake.nix
File metadata and controls
67 lines (56 loc) · 1.96 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
description = "Tx village - Cardano transaction builder ecosystem";
inputs = {
# LambdaBuffers as source of truth for many inputs
lbf.url = "github:mlabs-haskell/lambda-buffers";
# Flake monorepo toolkit
flake-lang.follows = "lbf/flake-lang";
# Nix
nixpkgs.follows = "lbf/nixpkgs";
flake-parts.follows = "lbf/flake-parts";
# Code quality automation
pre-commit-hooks.follows = "lbf/pre-commit-hooks";
hci-effects.follows = "lbf/hci-effects";
# Plutarch (Plutus validation scripts)
plutarch.follows = "lbf/plutarch";
# Light-weight wrapper around cardano-node
ogmios.url = "github:mlabs-haskell/ogmios-nix/v6.11.2";
# Local Cardano devnet for integration testing
cardano-devnet.url = "github:mlabs-haskell/cardano-devnet-flake";
cardano-node.url = "github:IntersectMBO/cardano-node/10.4.1";
# Tools for integration testing
process-compose-flake.url = "github:Platonic-Systems/process-compose-flake";
services-flake.url = "github:juspay/services-flake";
};
outputs =
inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./pkgs.nix
./settings.nix
./pre-commit.nix
./hercules-ci.nix
inputs.process-compose-flake.flakeModule
# Libraries
./tx-bakery/build.nix
./tx-bakery-ogmios/build.nix
./tx-indexer/build.nix
./ledger-sim/build.nix
# Extras
./extras/tx-bakery-testsuite/validation/build.nix
./extras/tx-bakery-testsuite/tests/build.nix
./extras/tx-bakery-testsuite/tests/dev-environment.nix
./extras/diesel-derive-pg/build.nix
./extras/tx-bakery-testsuite/api/build.nix
./extras/tx-indexer-testsuite/build.nix
./extras/tx-indexer-testsuite/dev-environment.nix
];
debug = true;
systems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
];
};
}