Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-nix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ jobs:
nix build --accept-flake-config .#cip-143-cli
nix build --accept-flake-config .#regulated-stablecoin-cli
- name: nix flake check
run: nix flake --accept-flake-config check
run: nix flake check --accept-flake-config --override-input systems github:nix-systems/$(nix eval --impure --raw --expr 'builtins.currentSystem')
- name: Check aiken
run: nix develop --accept-flake-config --command bash -c "cd src/examples/aiken/aiken && aiken build && aiken check"
run: nix develop --accept-flake-config --command bash -c "cd src/examples/aiken/aiken && aiken build && aiken check"
18 changes: 17 additions & 1 deletion flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@
url = "github:aiken-lang/aiken/v1.1.16";
inputs.nixpkgs.follows = "nixpkgs";
};

systems.url = "github:nix-systems/default";
};

outputs = inputs: inputs.iogx.lib.mkFlake {
outputs = inputs@{systems, ...}: inputs.iogx.lib.mkFlake {
inherit inputs;
repoRoot = ./.;
outputs = import ./nix/outputs.nix;
systems = [ "x86_64-linux" ]; # "x86_64-darwin" ];
systems = (import systems);
};

nixConfig = {
Expand Down
Loading