Unverified Commit 1ea6ee81 authored by Philip Taron's avatar Philip Taron
Browse files

treewide: use buildGoModule instead of buildGoModule.override { go = go_1_26; }

buildGoModule is already buildGo126Module, so the override is redundant.
parent 8be23e66
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
  lib,
  stdenv,
  writableTmpDirAsHomeHook,
  go_1_26,
}:

let
@@ -22,7 +21,7 @@ let
  };
in

buildGoModule.override { go = go_1_26; } rec {
buildGoModule rec {
  pname = "fluxcd";
  inherit vendorHash version;

+1 −2
Original line number Diff line number Diff line
@@ -2,10 +2,9 @@
  lib,
  tailscale,
  buildGoModule,
  go_1_26,
}:

buildGoModule.override { go = go_1_26; } {
buildGoModule {
  pname = "tailscale-gitops-pusher";
  inherit (tailscale) version;

+1 −2
Original line number Diff line number Diff line
@@ -2,11 +2,10 @@
  lib,
  stdenv,
  buildGoModule,
  go_1_26,
  tailscale,
}:

buildGoModule.override { go = go_1_26; } {
buildGoModule {
  pname = "tailscale-nginx-auth";
  inherit (tailscale) version src vendorHash;

+1 −2
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
  stdenv,

  buildGoModule,
  go_1_26,
  fetchFromGitHub,

  makeWrapper,
@@ -23,7 +22,7 @@
  tailscale-nginx-auth,
}:

buildGoModule.override { go = go_1_26; } (finalAttrs: {
buildGoModule (finalAttrs: {
  pname = "tailscale";
  version = "1.96.3";