solc: fix build

Prevent the download of jsoncpp to happen at build time.
Don’t treat warnings as errors, since there is a warning about the major() macros in GNU libc.
This commit is contained in:
Vincent Laporte 2017-03-04 10:38:42 +01:00
parent 843e5daebe
commit fe0ef55384

View File

@ -1,4 +1,9 @@
{ stdenv, fetchgit, boost, cmake, jsoncpp }: { stdenv, fetchzip, fetchgit, boost, cmake }:
let jsoncpp = fetchzip {
url = https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz;
sha256 = "0jz93zv17ir7lbxb3dv8ph2n916rajs8i96immwx9vb45pqid3n0";
}; in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.4.8"; version = "0.4.8";
@ -13,9 +18,13 @@ stdenv.mkDerivation rec {
patchPhase = '' patchPhase = ''
echo >commit_hash.txt 2dabbdf06f414750ef0425c664f861aeb3e470b8 echo >commit_hash.txt 2dabbdf06f414750ef0425c664f861aeb3e470b8
substituteInPlace deps/jsoncpp.cmake \
--replace https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz ${jsoncpp}
substituteInPlace cmake/EthCompilerSettings.cmake \
--replace 'add_compile_options(-Werror)' ""
''; '';
buildInputs = [ boost cmake jsoncpp ]; buildInputs = [ boost cmake ];
meta = { meta = {
description = "Compiler for Ethereum smart contract language Solidity"; description = "Compiler for Ethereum smart contract language Solidity";