45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv, fetchzip, fetchurl, boost, cmake, z3 }:
|
|
|
|
let
|
|
version = "0.4.20";
|
|
jsoncppURL = https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz;
|
|
jsoncpp = fetchzip {
|
|
url = jsoncppURL;
|
|
sha256 = "0jz93zv17ir7lbxb3dv8ph2n916rajs8i96immwx9vb45pqid3n0";
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "solc-${version}";
|
|
|
|
# Cannot use `fetchFromGitHub' because of submodules
|
|
src = fetchurl {
|
|
url = "https://github.com/ethereum/solidity/releases/download/v${version}/solidity_${version}.tar.gz";
|
|
sha256 = "0jyqnykj537ksfsf2m6ww9vganmpa6yd5fmlfpa5qm1076kq7zd6";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace cmake/jsoncpp.cmake \
|
|
--replace '${jsoncppURL}' ${jsoncpp}
|
|
substituteInPlace cmake/EthCompilerSettings.cmake \
|
|
--replace 'add_compile_options(-Werror)' ""
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DBoost_USE_STATIC_LIBS=OFF"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ boost z3 ];
|
|
|
|
meta = {
|
|
description = "Compiler for Ethereum smart contract language Solidity";
|
|
longDescription = "This package also includes `lllc', the LLL compiler.";
|
|
homepage = https://github.com/ethereum/solidity;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
maintainers = [ stdenv.lib.maintainers.dbrock ];
|
|
inherit version;
|
|
};
|
|
}
|