nix: Switch to stable rust.

This commit is contained in:
Blaž Hrastnik 2021-04-09 19:07:33 +09:00
parent 978f5114d8
commit 5253f40477
3 changed files with 12 additions and 12 deletions

View file

@ -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 {