blob: 77c91907557f0b03e26fc5004f4a24df7f8e5ef1 (
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-04-24";
targets = [ ];
chan = pkgs.rustChannelOfTargets channel date targets;
in chan
|