From 758cef42fd99a5bd4f56cd691a3581cf380d8d0b Mon Sep 17 00:00:00 2001 From: figsoda Date: Fri, 12 May 2023 09:19:03 -0400 Subject: [PATCH] diffsitter: remove completions binary --- pkgs/tools/text/diffsitter/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/text/diffsitter/default.nix b/pkgs/tools/text/diffsitter/default.nix index d0f33d3ee17..0b38fff35f9 100644 --- a/pkgs/tools/text/diffsitter/default.nix +++ b/pkgs/tools/text/diffsitter/default.nix @@ -54,6 +54,10 @@ rustPlatform.buildRustPackage rec { ]; postInstall = '' + # completions are not yet implemented + # so we can safely remove this without installing the completions + rm $out/bin/diffsitter_completions + wrapProgram "$out/bin/diffsitter" \ --prefix LD_LIBRARY_PATH : "${libPath}" '';