forked from TribecaHQ/tribeca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
31 lines (29 loc) · 864 Bytes
/
flake.nix
File metadata and controls
31 lines (29 loc) · 864 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
27
28
29
30
31
{
description = "Tribeca 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-overlay.packages.${system};
ci = import ./ci.nix { inherit pkgs; };
in
{
packages = {
inherit ci;
inherit (pkgs) anchor yarn cargo-workspaces solana-basic;
};
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ ci rustup cargo-deps gh ];
};
});
}