clippy: enable debug info

This was useful while tracking down why clippy was broken when
cross-compiling.
This commit is contained in:
Alyssa Ross 2023-04-12 19:55:28 +00:00
parent e4fda18f56
commit a1924ebbbf

View file

@ -4,6 +4,8 @@ rustPlatform.buildRustPackage {
pname = "clippy";
inherit (rustPlatform.rust.rustc) version src;
separateDebugInfo = true;
# the rust source tarball already has all the dependencies vendored, no need to fetch them again
cargoVendorDir = "vendor";
buildAndTestSubdir = "src/tools/clippy";