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
18 changes: 9 additions & 9 deletions flake.lock

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

2 changes: 1 addition & 1 deletion lib/buildFlakeOutputs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ in
packages = {
inherit env-anchor-idls env-anchor-build env-release-crates
env-release-npm;
rust = pkgs.rust-stable;
rust = pkgs.rust-full;

anchor = tool-anchor;
solana = tool-solana;
Expand Down
3 changes: 2 additions & 1 deletion overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ let
rustNightly = mkRust prev.rust-bin.nightly."2022-05-21".minimal;
rust-1_60 = mkRust prev.rust-bin.stable."1.60.0".minimal;
rustStable = mkRust prev.rust-bin.stable."1.61.0".minimal;
rust-full = mkRust prev.rust-bin.stable."1.62.0".default;
saberPackages = (import ./packages {
inherit rustNightly rustStable rust-1_60;
inherit rustNightly rustStable rust-1_60 rust-full;
pkgs = prev;
});
in
Expand Down
4 changes: 3 additions & 1 deletion packages/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, rustNightly, rustStable, rust-1_60 }:
{ pkgs, rustNightly, rustStable, rust-1_60, rust-full }:
let
darwinPackages = pkgs.lib.optionals pkgs.stdenv.isDarwin
(with pkgs.darwin.apple_sdk.frameworks;
Expand Down Expand Up @@ -30,6 +30,8 @@ let
};
in
anchorPackages // solanaFlattened // rec {
inherit rust-full;

spl-token-cli = pkgs.callPackage ./spl-token-cli.nix {
inherit (rustStable) rustPlatform;
inherit (pkgs) lib clang llvm pkgconfig openssl zlib udev stdenv fetchCrate;
Expand Down