rust-src
This commit is contained in:
parent
02e5491152
commit
d42ddddd29
1 changed files with 3 additions and 1 deletions
|
@ -28,7 +28,9 @@
|
||||||
default = import ./shell.nix {
|
default = import ./shell.nix {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
additionalBuildInputs = [
|
additionalBuildInputs = [
|
||||||
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
|
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
|
||||||
|
extensions = [ "rust-src" ];
|
||||||
|
}))
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue