nixpkgs/pkgs/development/compilers/solc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

139 lines
4.0 KiB
Nix
Raw Normal View History

2021-03-04 01:28:10 +00:00
{ lib, gccStdenv, fetchzip
2022-05-03 02:24:02 +00:00
, pkgs
2021-03-04 01:28:10 +00:00
, boost
, cmake
, coreutils
, fetchpatch
2023-04-04 17:17:56 +00:00
, jq
2021-03-04 01:28:10 +00:00
, ncurses
, python3
, z3Support ? true
2023-04-04 17:17:56 +00:00
, z3_4_11 ? null
2021-05-19 16:48:36 +00:00
, cvc4Support ? gccStdenv.isLinux
2021-03-04 01:28:10 +00:00
, cvc4 ? null
, cln ? null
, gmp ? null
}:
# compiling source/libsmtutil/CVC4Interface.cpp breaks on clang on Darwin,
# general commandline tests fail at abiencoderv2_no_warning/ on clang on NixOS
2023-04-04 17:17:56 +00:00
let z3 = z3_4_11; in
2023-04-04 17:17:56 +00:00
assert z3Support -> z3 != null && lib.versionAtLeast z3.version "4.11.0";
assert cvc4Support -> cvc4 != null && cln != null && gmp != null;
2017-07-05 14:31:42 +00:00
let
2021-03-04 01:28:10 +00:00
jsoncppVersion = "1.9.3";
jsoncppUrl = "https://github.com/open-source-parsers/jsoncpp/archive/${jsoncppVersion}.tar.gz";
2017-07-05 14:31:42 +00:00
jsoncpp = fetchzip {
url = jsoncppUrl;
2021-03-04 01:28:10 +00:00
sha256 = "1vbhi503rgwarf275ajfdb8vpdcbn1f7917wjkf8jghqwb1c24lq";
2017-07-05 14:31:42 +00:00
};
2016-08-11 12:51:44 +00:00
2023-04-04 17:17:56 +00:00
range3Version = "0.12.0";
2021-03-04 01:28:10 +00:00
range3Url = "https://github.com/ericniebler/range-v3/archive/${range3Version}.tar.gz";
range3 = fetchzip {
url = range3Url;
2023-04-04 17:17:56 +00:00
sha256 = "sha256-bRSX91+ROqG1C3nB9HSQaKgLzOHEFy9mrD2WW3PRBWU=";
2016-08-11 12:51:44 +00:00
};
2022-03-26 18:01:07 +00:00
fmtlibVersion = "8.0.1";
fmtlibUrl = "https://github.com/fmtlib/fmt/archive/${fmtlibVersion}.tar.gz";
fmtlib = fetchzip {
url = fmtlibUrl;
sha256 = "1mnvxqsan034d2jiqnw2yvkljl7lwvhakmj5bscwp1fpkn655bbw";
};
2022-05-03 02:24:02 +00:00
pname = "solc";
2023-04-04 17:17:56 +00:00
version = "0.8.19";
2022-05-03 02:24:02 +00:00
meta = with lib; {
description = "Compiler for Ethereum smart contract language Solidity";
homepage = "https://github.com/ethereum/solidity";
license = licenses.gpl3;
maintainers = with maintainers; [ dbrock akru lionello sifmelcara ];
};
solc = if gccStdenv.isLinux then gccStdenv.mkDerivation rec {
inherit pname version meta;
2021-03-04 01:28:10 +00:00
# upstream suggests avoid using archive generated by github
src = fetchzip {
url = "https://github.com/ethereum/solidity/releases/download/v${version}/solidity_${version}.tar.gz";
2023-04-04 17:17:56 +00:00
sha256 = "sha256-xh/QPYNEWxPtDaVmBeIE/Ch98g0ox9gJ/lR6ziOu+bg=";
2021-03-04 01:28:10 +00:00
};
2023-04-04 17:17:56 +00:00
patches = [
./tests.patch
];
2021-03-04 01:28:10 +00:00
postPatch = ''
substituteInPlace cmake/jsoncpp.cmake \
--replace "${jsoncppUrl}" ${jsoncpp}
substituteInPlace cmake/range-v3.cmake \
--replace "${range3Url}" ${range3}
2022-03-26 18:01:07 +00:00
substituteInPlace cmake/fmtlib.cmake \
--replace "${fmtlibUrl}" ${fmtlib}
2021-03-04 01:28:10 +00:00
'';
2016-09-10 14:03:42 +00:00
2021-03-04 01:28:10 +00:00
cmakeFlags = [
"-DBoost_USE_STATIC_LIBS=OFF"
2022-05-02 23:06:35 +00:00
] ++ (if z3Support then [
"-DSTRICT_Z3_VERSION=OFF"
] else [
2021-03-04 01:28:10 +00:00
"-DUSE_Z3=OFF"
2022-05-02 23:06:35 +00:00
]) ++ lib.optionals (!cvc4Support) [
2021-03-04 01:28:10 +00:00
"-DUSE_CVC4=OFF"
];
2021-03-04 01:28:10 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ]
++ lib.optionals z3Support [ z3 ]
++ lib.optionals cvc4Support [ cvc4 cln gmp ];
2023-04-04 17:17:56 +00:00
nativeCheckInputs = [ jq ncurses (python3.withPackages (ps: with ps; [ colorama deepdiff devtools docopt docutils requests sphinx tabulate z3 ])) ]; # contextlib2 glob2 textwrap3 traceback2 urllib3
2021-03-04 01:28:10 +00:00
# tests take 60+ minutes to complete, only run as part of passthru tests
doCheck = false;
2021-03-04 01:28:10 +00:00
checkPhase = ''
pushd ..
# IPC tests need aleth avaliable, so we disable it
sed -i "s/IPC_ENABLED=true/IPC_ENABLED=false\nIPC_FLAGS=\"--no-ipc\"/" ./scripts/tests.sh
for i in ./scripts/*.sh ./scripts/*.py ./test/*.sh ./test/*.py; do
patchShebangs "$i"
done
2023-04-04 17:17:56 +00:00
## TODO: reenable tests below after adding evmone and hera and their dependencies to nixpkgs
#TERM=xterm ./scripts/tests.sh ${lib.optionalString z3Support "--no-smt"}
2021-03-04 01:28:10 +00:00
popd
'';
2016-08-11 12:51:44 +00:00
2021-03-04 01:28:10 +00:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/solc --version > /dev/null
'';
passthru.tests = {
solcWithTests = solc.overrideAttrs (attrs: { doCheck = true; });
};
2022-05-03 02:24:02 +00:00
} else gccStdenv.mkDerivation rec {
inherit pname version meta;
2021-03-04 01:28:10 +00:00
2022-05-03 02:24:02 +00:00
src = pkgs.fetchurl {
url = "https://github.com/ethereum/solidity/releases/download/v${version}/solc-macos";
2023-04-04 17:17:56 +00:00
sha256 = "sha256-OMhSOrZ+Cz4hxIGJ1r+5mtaHm5zgLg2ALsi+WYuyYi0=";
2021-03-04 01:28:10 +00:00
};
2022-05-03 02:24:02 +00:00
dontUnpack = true;
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ${src} $out/bin/solc
chmod +x $out/bin/solc
runHook postInstall
'';
2016-08-11 12:51:44 +00:00
};
2021-03-04 01:28:10 +00:00
in
solc