Skip to content

Commit

Permalink
flake: Add rust-overlay as a separate input
Browse files Browse the repository at this point in the history
My reasoning is as follows: we need an up-to-date rust-overlay in order
to access recent nightlies. Currently we follow crane's rust-overlay,
but recent versions of crane don't have a rust-overlay input anymore. So
we'll need to have rust-overlay as input like this eventually anyway.
Hence I did this without even updating crane because there was no need.
  • Loading branch information
Nadrieril committed May 28, 2024
1 parent f562534 commit 01137ce
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
28 changes: 24 additions & 4 deletions flake.lock

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

6 changes: 5 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
flake-utils.follows = "flake-utils";
};
};
rust-overlay.follows = "crane/rust-overlay";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
fstar = {
url = "github:FStarLang/FStar/v2024.01.13";
inputs = {
Expand Down

0 comments on commit 01137ce

Please sign in to comment.