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:
commit
535734e71c
|
@ -1,6 +1,6 @@
|
||||||
{ lib, buildGo118Module, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGo118Module rec {
|
buildGoModule rec {
|
||||||
pname = "ssl-proxy";
|
pname = "ssl-proxy";
|
||||||
version = "0.2.7";
|
version = "0.2.7";
|
||||||
|
|
||||||
|
|
|
@ -42117,7 +42117,9 @@ with pkgs;
|
||||||
|
|
||||||
yazi = callPackage ../applications/file-managers/yazi { inherit (darwin.apple_sdk.frameworks) Foundation; };
|
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 {};
|
code-maat = callPackage ../development/tools/code-maat {};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue