about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSimon Schoeters <b2282e9d-46e8-4ec4-946a-b6ad84078b1c@astil.be>2022-06-04 14:24:37 +0000
committerehmry <ehmry@posteo.net>2022-06-07 08:52:45 -0500
commit47d633a96803e6095012b10e16d7bfd50a34a245 (patch)
tree3c2a158967425c08e71fe4018eff5139557ca36d /pkgs/tools
parent55b2904c5ad89529365d957460f5558095ee9937 (diff)
Remove obvious comments from ldflags
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/bluetooth/bluewalker/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/bluetooth/bluewalker/default.nix b/pkgs/tools/bluetooth/bluewalker/default.nix
index 8cdfca94e28e1..8aa113f045133 100644
--- a/pkgs/tools/bluetooth/bluewalker/default.nix
+++ b/pkgs/tools/bluetooth/bluewalker/default.nix
@@ -13,9 +13,9 @@ buildGoModule rec {
 
   vendorSha256 = "189qs6vmx63vwsjmc4qgf1y8xjsi7x6l1f5c3kd8j8jnagl26z4h";
 
-  ldflags = [ # omit some things for a smaller binary
-    "-w" # omit the DWARF symbol table
-    "-s" # omit symbol table and debug info
+  ldflags = [
+    "-w"
+    "-s"
   ];
 
   meta = with lib; {