forked from GokiProtocol/goki
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflake.nix
More file actions
26 lines (24 loc) · 754 Bytes
/
flake.nix
File metadata and controls
26 lines (24 loc) · 754 Bytes
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
{
description = "Goki Protocol development environment.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
saber-overlay.url = "github:saber-hq/saber-overlay";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, saber-overlay, flake-utils }:
flake-utils.lib.eachSystem [
"aarch64-darwin"
"x86_64-linux"
"x86_64-darwin"
] (system:
let
pkgs = import nixpkgs { inherit system; };
saber-pkgs = saber-overlay.packages.${system};
ci = import ./ci.nix { inherit pkgs saber-pkgs; };
in {
packages.ci = ci;
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ ci rustup cargo-deps gh ];
};
});
}