Files
wordle-solver-rs/nix/with-toolchain.nix
2026-08-19 20:59:30 +02:00

17 lines
209 B
Nix

{
makeRustPlatform,
cargo,
rustc,
pkgs,
...
}: let
p = pkgs;
in rec {
rustPlatform = makeRustPlatform {
inherit cargo rustc;
};
pkgs = p.extend (_: _: {
inherit rustPlatform;
});
}