From deb823f3b3bd6ab3eec2652fdf18932e3f160c63 Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Tue, 24 Jun 2025 23:04:23 +0200 Subject: [PATCH] flake: Fix path to crates This is a fix after my oversight of adjusting the path alongside 5bc2dc677b24aa5c266957fd07122b81fc85a683. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3bcd7421..27625fb8 100644 --- a/flake.nix +++ b/flake.nix @@ -123,7 +123,7 @@ }: rust.craneLib.buildPackage (rust.commonArgs // { - inherit (rust.craneLib.crateNameFromCargoToml {cargoToml = src + "/" + name + "/Cargo.toml";}) pname version; + inherit (rust.craneLib.crateNameFromCargoToml {cargoToml = src + "/crates/" + name + "/Cargo.toml";}) pname version; cargoExtraArgs = "-p ${name}"; doCheck = false; postInstall = ''