forked from QuarryProtocol/quarry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
29 lines (27 loc) · 850 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
{
description = "Quarry 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.stdenvNoCC.mkDerivation {
name = "devshell";
buildInputs = with pkgs; [ ci rustup cargo-deps gh cargo-expand ];
};
});
}