-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
31 lines (26 loc) · 908 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
{
description = "Plutus Ledger types and utilities implemented in Rust";
inputs = {
flake-lang.url = "github:mlabs-haskell/flake-lang.nix";
nixpkgs.follows = "flake-lang/nixpkgs";
# Flakes as modules, using this extensively to organize the repo into modules (build.nix files)
flake-parts.follows = "flake-lang/flake-parts";
# Hercules CI effects
hci-effects.url = "github:hercules-ci/hercules-ci-effects";
# Code quality automation
pre-commit-hooks.follows = "flake-lang/pre-commit-hooks";
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./pkgs.nix
./settings.nix
./pre-commit.nix
./hercules-ci.nix
./plutus-ledger-api/build.nix
./is-plutus-data-derive/build.nix
];
debug = true;
systems = [ "x86_64-linux" "x86_64-darwin" ];
};
}