solc: make linux only

Darwin build is already failing.
Don't have hardware iterate
This commit is contained in:
Jonathan Ringer 2021-03-04 11:20:13 -08:00 committed by Jonathan Ringer
parent 6a36b730ae
commit cbce4e76d3
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ gccStdenv.mkDerivation rec {
description = "Compiler for Ethereum smart contract language Solidity";
homepage = "https://github.com/ethereum/solidity";
license = licenses.gpl3;
platforms = with platforms; linux ++ darwin;
platforms = with platforms; linux; # darwin is currently broken
maintainers = with maintainers; [ dbrock akru lionello sifmelcara ];
inherit version;
};

View file

@ -98,7 +98,7 @@ let
description = "Compiler for Ethereum smart contract language Solidity";
homepage = "https://github.com/ethereum/solidity";
license = licenses.gpl3;
platforms = with platforms; linux ++ darwin;
platforms = with platforms; linux; # darwin is currently broken
maintainers = with maintainers; [ dbrock akru lionello sifmelcara ];
inherit version;
};