From 49facf67c3fbc8a0c96ba7b52617b829cb93a58c Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Thu, 14 Dec 2023 21:19:13 +0000 Subject: [PATCH] Properly set RUST_SRC_PATH in flake --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 62f2f57..6e7957d 100644 --- a/flake.nix +++ b/flake.nix @@ -52,8 +52,7 @@ rustPackages.clippy ]; DBUS_XML_PATH = dbusPaths; - RUST_SRC_PATH = - "${rustPackages.rustPlatform.rustLibSrc}/lib/rustlib"; + RUST_SRC_PATH = "${rustPackages.rustPlatform.rustLibSrc}"; }; devShell = devShells.rustybar;