Skip to content

Commit

Permalink
nix: Switch to stable rust.
Browse files Browse the repository at this point in the history
  • Loading branch information
archseer committed Apr 9, 2021
1 parent 978f511 commit 5253f40
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 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 flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
let
pkgs = import nixpkgs { inherit system; overlays = [ rust-overlay.overlay ]; };
naerskLib = pkgs.callPackage naersk {
inherit (pkgs.rust-bin.nightly.latest) rustc cargo;
inherit (pkgs.rust-bin.stable.latest.default) rustc cargo;
};
in rec {
packages.helix = naerskLib.buildPackage {
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pkgs.mkShell {
nativeBuildInputs = with pkgs; [
(rust-bin.nightly.latest.rust.override { extensions = ["rust-src"]; })
(rust-bin.stable.latest.default.override { extensions = ["rust-src"]; })
lld_10
stdenv.cc.cc.lib
# pkg-config
Expand Down

0 comments on commit 5253f40

Please sign in to comment.