aboutsummaryrefslogtreecommitdiff
path: root/nix/rust.nix
blob: a0108c3f32b52a24321c2c3d9a2f559ee8a20ed3 (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-12-17";
  targets = [ ];
  chan = pkgs.rustChannelOfTargets channel date targets;
in chan