aboutsummaryrefslogtreecommitdiff
path: root/nix/rust.nix
blob: 9cb9b945a0f919fed0f1a4a2c5e5e4a070bfafb1 (plain)
1
2
3
4
5
6
7
8
9
10
{ sources ? import ./sources.nix }:

let
  pkgs =
    import sources.nixpkgs { overlays = [ (import sources.nixpkgs-mozilla) ]; };
  channel = "nightly";
  date = "2021-07-06";
  targets = [ ];
  chan = pkgs.rustChannelOfTargets channel date targets;
in chan