Skip to content

Commit

Permalink
chore: rust comps as extentions
Browse files Browse the repository at this point in the history
  • Loading branch information
thesimplekid committed Nov 15, 2024
1 parent 21b4950 commit a970202
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,25 @@
# latest stable
stable_toolchain = pkgs.rust-bin.stable."1.82.0".default.override {
targets = [ "wasm32-unknown-unknown" ]; # wasm
extensions = [ "rustfmt" "clippy" "rust-analyzer" ];
};

# MSRV stable
msrv_toolchain = pkgs.rust-bin.stable."1.63.0".default.override {
targets = [ "wasm32-unknown-unknown" ]; # wasm
extensions = [ "rustfmt" "clippy" "rust-analyzer" ];
};


# DB MSRV stable
db_msrv_toolchain = pkgs.rust-bin.stable."1.66.0".default.override {
targets = [ "wasm32-unknown-unknown" ]; # wasm
extensions = [ "rustfmt" "clippy" "rust-analyzer" ];
};

# Nighly for creating lock files
nightly_toolchain = pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
extensions = [ "rustfmt" ];
extensions = [ "rustfmt" "clippy" "rust-analyzer" ];
});

# Common inputs
Expand All @@ -67,7 +70,6 @@
just
protobuf
nixpkgs-fmt
rust-analyzer
typos
lnd
clightning
Expand Down

0 comments on commit a970202

Please sign in to comment.