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/infra/libkookie/overlays/rust/examples/hello-world/shell.nix

10 lines
305 B

{ channel ? "stable", profile ? "default" }:
with import <nixpkgs> { overlays = [ (import ../..) ]; };
mkShell {
nativeBuildInputs = [
(if channel == "nightly" then
rust-bin.selectLatestNightlyWith (toolchain: toolchain.${profile})
else
rust-bin.${channel}.latest.${profile})
];
}