act: use go 1.14 on darwin

This commit is contained in:
Mario Rodas 2020-08-26 04:20:00 +00:00
parent df385798de
commit e6a10904e7
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027

View File

@ -579,7 +579,10 @@ in
acpica-tools = callPackage ../tools/system/acpica-tools { };
act = callPackage ../development/tools/misc/act {};
act = callPackage ../development/tools/misc/act {
# go 1.15 cannot connect to docker-for-mac https://github.com/docker/for-mac/issues/4855
buildGoModule = if stdenv.isDarwin then buildGo114Module else buildGoModule;
};
actdiag = with python3.pkgs; toPythonApplication actdiag;