summaryrefslogtreecommitdiff
path: root/nix/rust.nix
blob: 1419ec7decc6a59b2e62d5e76dc0b844bfba644f (plain) (blame)
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 = "2022-02-16";
  targets = [ ];
  chan = pkgs.rustChannelOfTargets channel date targets;
in chan