This commit is contained in:
Zynh Ludwig 2024-11-13 17:56:52 -08:00
parent 02e5491152
commit d42ddddd29

View file

@ -28,7 +28,9 @@
default = import ./shell.nix {
inherit pkgs;
additionalBuildInputs = [
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
extensions = [ "rust-src" ];
}))
];
};
});