ssl-proxy: use buildGo119Module

This commit is contained in:
Mario Rodas 2023-10-08 04:20:00 +00:00
parent 627f2fe90a
commit 08da911795
2 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ lib, buildGo118Module, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGo118Module rec {
buildGoModule rec {
pname = "ssl-proxy";
version = "0.2.7";

View file

@ -42116,7 +42116,9 @@ with pkgs;
yazi = callPackage ../applications/file-managers/yazi { inherit (darwin.apple_sdk.frameworks) Foundation; };
ssl-proxy = callPackage ../tools/networking/ssl-proxy { };
ssl-proxy = callPackage ../tools/networking/ssl-proxy {
buildGoModule = buildGo119Module; # build fails with 1.20
};
code-maat = callPackage ../development/tools/code-maat {};
}