2019-06-25 17:24:04 +01:00
|
|
|
{ stdenv, fetchzip, boost, cmake, ncurses, python2
|
2019-08-23 18:18:52 +01:00
|
|
|
, z3Support ? true, z3 ? null, cvc4Support ? true, cvc4 ? null
|
|
|
|
, cln ? null, gmp ? null
|
2019-02-20 17:05:27 +00:00
|
|
|
}:
|
|
|
|
|
2019-08-23 18:18:52 +01:00
|
|
|
assert z3Support -> z3 != null && stdenv.lib.versionAtLeast z3.version "4.6.0";
|
|
|
|
assert cvc4Support -> cvc4 != null && cln != null && gmp != null;
|
2017-03-04 09:38:42 +00:00
|
|
|
|
2017-07-05 15:31:42 +01:00
|
|
|
let
|
2018-06-10 09:37:58 +01:00
|
|
|
jsoncppURL = https://github.com/open-source-parsers/jsoncpp/archive/1.8.4.tar.gz;
|
2017-07-05 15:31:42 +01:00
|
|
|
jsoncpp = fetchzip {
|
|
|
|
url = jsoncppURL;
|
2018-06-10 09:37:58 +01:00
|
|
|
sha256 = "1z0gj7a6jypkijmpknis04qybs1hkd04d1arr3gy89lnxmp6qzlm";
|
2017-07-05 15:31:42 +01:00
|
|
|
};
|
2019-04-30 22:18:25 +01:00
|
|
|
buildSharedLibs = stdenv.hostPlatform.isLinux;
|
2017-07-05 15:31:42 +01:00
|
|
|
in
|
2019-06-25 17:24:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "solc";
|
2019-10-08 20:30:48 +01:00
|
|
|
version = "0.5.12";
|
2016-08-11 13:51:44 +01:00
|
|
|
|
2019-06-25 17:24:04 +01: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";
|
2019-10-08 20:30:48 +01:00
|
|
|
sha256 = "0b9m9jhdz5lgrhrkngj1xnggxp1f6z8pzh29acsz3298l77kfk3z";
|
2016-08-11 13:51:44 +01:00
|
|
|
};
|
|
|
|
|
2019-04-30 22:18:25 +01:00
|
|
|
patches = stdenv.lib.optionals buildSharedLibs [ ./patches/shared-libs-install.patch ];
|
2018-05-02 10:27:47 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
2017-09-22 21:18:21 +01:00
|
|
|
substituteInPlace cmake/jsoncpp.cmake \
|
2018-05-02 10:27:47 +01:00
|
|
|
--replace "${jsoncppURL}" ${jsoncpp}
|
2016-09-10 15:03:42 +01:00
|
|
|
'';
|
|
|
|
|
2017-08-30 17:21:17 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBoost_USE_STATIC_LIBS=OFF"
|
2019-04-30 22:18:25 +01:00
|
|
|
] ++ stdenv.lib.optionals buildSharedLibs [
|
2018-05-02 10:27:47 +01:00
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
2019-02-20 17:05:27 +00:00
|
|
|
] ++ stdenv.lib.optionals (!z3Support) [
|
|
|
|
"-DUSE_Z3=OFF"
|
2019-08-23 18:18:52 +01:00
|
|
|
] ++ stdenv.lib.optionals (!cvc4Support) [
|
|
|
|
"-DUSE_CVC4=OFF"
|
2017-08-30 17:21:17 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
2019-08-23 18:18:52 +01:00
|
|
|
buildInputs = [ boost ]
|
|
|
|
++ stdenv.lib.optionals z3Support [ z3 ]
|
|
|
|
++ stdenv.lib.optionals cvc4Support [ cvc4 cln gmp ];
|
2019-04-30 22:18:25 +01:00
|
|
|
checkInputs = [ ncurses python2 ];
|
|
|
|
|
|
|
|
# Test fails on darwin for unclear reason
|
|
|
|
doCheck = stdenv.hostPlatform.isLinux;
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
while IFS= read -r -d ''' dir
|
|
|
|
do
|
|
|
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/$dir
|
|
|
|
export LD_LIBRARY_PATH
|
|
|
|
done < <(find . -type d -print0)
|
|
|
|
|
|
|
|
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; do
|
|
|
|
patchShebangs "$i"
|
|
|
|
done
|
|
|
|
for i in ./scripts/*.py; do
|
|
|
|
patchShebangs "$i"
|
|
|
|
done
|
|
|
|
for i in ./test/*.sh; do
|
|
|
|
patchShebangs "$i"
|
|
|
|
done
|
|
|
|
TERM=xterm ./scripts/tests.sh
|
|
|
|
popd
|
|
|
|
'';
|
2016-08-11 13:51:44 +01:00
|
|
|
|
2018-05-02 10:27:47 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-08-11 13:51:44 +01:00
|
|
|
description = "Compiler for Ethereum smart contract language Solidity";
|
|
|
|
homepage = https://github.com/ethereum/solidity;
|
2018-05-02 10:27:47 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2019-04-30 22:18:25 +01:00
|
|
|
maintainers = with maintainers; [ dbrock akru lionello sifmelcara ];
|
2016-08-11 13:51:44 +01:00
|
|
|
inherit version;
|
|
|
|
};
|
|
|
|
}
|