Unverified Commit 417d18ac authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

forgejo-lts: fix check failure (#454941)

parents 778aa18a e1fcdad9
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
  bash,
  brotli,
  buildGoModule,
  fetchpatch,
  forgejo,
  git,
  gzip,
@@ -83,6 +84,14 @@ buildGoModule rec {

  patches = [
    ./static-root-path.patch
  ]
  ++ lib.optionals lts [
    (fetchpatch {
      # fix for go 1.25.2 stricter ipv6 parsing, remove for LTS > 11.0.6
      name = "fix-test-ipv6-go125.patch";
      url = "https://codeberg.org/forgejo/forgejo/commit/0d9a8e3fa2cf9228290ed1a9a5767e6ba204edd7.patch";
      hash = "sha256-AM4/kgCXSU5Bj8aOObm6qyeL1SEpeFhmlT42lMJ2o08=";
    })
  ];

  postPatch = ''