lol

Merge pull request #150005 from Mic92/go

go: add mipsel/riscv64/s390x support

authored by

Jörg Thalheim and committed by
GitHub
9549b866 c28b4458

+8 -1
+4 -1
pkgs/development/compilers/go/1.16.nix
··· 40 40 "armv5tel" = "arm"; 41 41 "armv6l" = "arm"; 42 42 "armv7l" = "arm"; 43 + "mips" = "mips"; 44 + "mipsel" = "mipsle"; 45 + "riscv64" = "riscv64"; 46 + "s390x" = "s390x"; 43 47 "powerpc64le" = "ppc64le"; 44 - "mips" = "mips"; 45 48 }.${platform.parsed.cpu.name} or (throw "Unsupported system"); 46 49 47 50 # We need a target compiler which is still runnable at build time,
+4
pkgs/development/compilers/go/1.17.nix
··· 40 40 "armv5tel" = "arm"; 41 41 "armv6l" = "arm"; 42 42 "armv7l" = "arm"; 43 + "mips" = "mips"; 44 + "mipsel" = "mipsle"; 45 + "riscv64" = "riscv64"; 46 + "s390x" = "s390x"; 43 47 "powerpc64le" = "ppc64le"; 44 48 }.${platform.parsed.cpu.name} or (throw "Unsupported system"); 45 49