1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

Merge pull request #259865 from marsam/ssl-proxy-buildGo119Module

ssl-proxy: use buildGo119Module
This commit is contained in:
Nick Cao 2023-10-11 13:59:54 -04:00 committed by GitHub
commit 535734e71c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -42117,7 +42117,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 {};
}