blob: 81ca0e8ede7ea81e9f81babec6ce31a214cfb975 (
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-02-20";
targets = [ ];
chan = pkgs.rustChannelOfTargets channel date targets;
in chan
|