From a741a42ea438fea272fd684a40aba523c87d11f1 Mon Sep 17 00:00:00 2001 From: Frede Date: Mon, 6 Oct 2025 16:05:11 +0200 Subject: [PATCH] Fix nix flake double copy (#4976) Signed-off-by: Frede Braendstrup --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 97fe9a947a..98bf498c40 100644 --- a/flake.nix +++ b/flake.nix @@ -42,7 +42,7 @@ defaultPackage = pkgs.rustPlatform.buildRustPackage { pname = cargoToml.package.name; version = workspaceToml.workspace.package.version; - src = ./.; + src = self; cargoLock = { lockFile = ./Cargo.lock;