From 8ecaffcd8c3916ac6bd85dbbd609a91e9dc9b243 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 9 Oct 2024 12:34:39 +0200 Subject: [PATCH] remove unused lib.trace from flake --- pkgs/clan-cli/flake-module.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/clan-cli/flake-module.nix b/pkgs/clan-cli/flake-module.nix index 59e6bb093..28601e146 100644 --- a/pkgs/clan-cli/flake-module.nix +++ b/pkgs/clan-cli/flake-module.nix @@ -33,13 +33,11 @@ )); }; flakeLockFile = builtins.toFile "clan-core-flake.lock" (builtins.toJSON flakeLockVendoredDeps); - clanCoreWithVendoredDeps = - lib.trace flakeLockFile pkgs.runCommand "clan-core-with-vendored-deps" { } - '' - cp -r ${self} $out - chmod +w -R $out - cp ${flakeLockFile} $out/flake.lock - ''; + clanCoreWithVendoredDeps = pkgs.runCommand "clan-core-with-vendored-deps" { } '' + cp -r ${self} $out + chmod +w -R $out + cp ${flakeLockFile} $out/flake.lock + ''; in { devShells.clan-cli = pkgs.callPackage ./shell.nix {