about summary refs log tree commit diff
path: root/pkgs/by-name/up
diff options
context:
space:
mode:
authorPaul Meyer <49727155+katexochen@users.noreply.github.com>2023-12-24 21:14:12 +0100
committerPaul Meyer <49727155+katexochen@users.noreply.github.com>2023-12-28 09:59:34 +0100
commit77d6ba8a4cf5a71bca40b76de3bc071e56399eb1 (patch)
tree008e3eb80ab9d574673ceace7791146e122be5a9 /pkgs/by-name/up
parent891a6348766ff17e4666b43aa94a28390467340e (diff)
treewide: remove explicit `-buildid=`
from buildGoModules invocations

This is now always set by buildGoModule.
Diffstat (limited to 'pkgs/by-name/up')
-rw-r--r--pkgs/by-name/up/uplosi/package.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/by-name/up/uplosi/package.nix b/pkgs/by-name/up/uplosi/package.nix
index 05e38ca8026c7..738f7ea5a5673 100644
--- a/pkgs/by-name/up/uplosi/package.nix
+++ b/pkgs/by-name/up/uplosi/package.nix
@@ -16,7 +16,7 @@ buildGo121Module rec {
   vendorHash = "sha256-RsjUPLe8omoN+XGyNhHDxzNfZR7VVTkh/f/On1oCRqM=";
 
   CGO_ENABLED = "0";
-  ldflags = [ "-s" "-w" "-buildid=" "-X main.version=${version}" ];
+  ldflags = [ "-s" "-w" "-X main.version=${version}" ];
   flags = [ "-trimpath" ];
 
   meta = with lib; {