blob: a56f7441b6e6b164db5795565f4a1c463eedf95c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ sources ? import ./sources.nix }:
let
pkgs = import sources.nixpkgs { overlays = [ (import sources.nixpkgs-mozilla) ]; };
channel = "nightly";
date = "2021-05-12";
targets = [ ];
chan = pkgs.rustChannelOfTargets channel date targets;
in chan
|