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