17 lines
209 B
Nix
17 lines
209 B
Nix
{
|
|
makeRustPlatform,
|
|
cargo,
|
|
rustc,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
p = pkgs;
|
|
in rec {
|
|
rustPlatform = makeRustPlatform {
|
|
inherit cargo rustc;
|
|
};
|
|
pkgs = p.extend (_: _: {
|
|
inherit rustPlatform;
|
|
});
|
|
}
|