solc: make linux only
Darwin build is already failing. Don't have hardware iterate
This commit is contained in:
parent
6a36b730ae
commit
cbce4e76d3
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue