My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/all.nix

11 lines
375 B

# For test.
with import <nixpkgs> {
overlays = [ (import ./.) ];
}; {
stable = lib.mapAttrs
(channel: _: (rustChannelOf { inherit channel; }).rust)
(removeAttrs (import ./manifests/stable) ["latest"]);
nightly = lib.mapAttrs
(date: _: (rustChannelOf { channel = "nightly"; inherit date; }).rust)
(removeAttrs (import ./manifests/nightly) ["latest"]);
}