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

75 lines
2.2 KiB
Nix
Raw Normal View History

2020-05-15 08:36:26 +00:00
{ stdenv, fetchzip, boost, cmake, ncurses, python3, coreutils
, z3Support ? true, z3 ? null, cvc4Support ? true, cvc4 ? null
, cln ? null, gmp ? null
}:
assert z3Support -> z3 != null && stdenv.lib.versionAtLeast z3.version "4.6.0";
assert cvc4Support -> cvc4 != null && cln != null && gmp != null;
2017-07-05 14:31:42 +00:00
let
jsoncppURL = "https://github.com/open-source-parsers/jsoncpp/archive/1.9.2.tar.gz";
2017-07-05 14:31:42 +00:00
jsoncpp = fetchzip {
url = jsoncppURL;
sha256 = "037d1b1qdmn3rksmn1j71j26bv4hkjv7sn7da261k853xb5899sg";
2017-07-05 14:31:42 +00:00
};
in
2019-06-25 16:24:04 +00:00
stdenv.mkDerivation rec {
pname = "solc";
2020-05-15 08:36:26 +00:00
version = "0.6.8";
2016-08-11 12:51:44 +00:00
2019-06-25 16:24:04 +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";
2020-05-15 08:36:26 +00:00
sha256 = "1nxds6c10hjqjjk893qw2yljws57li0xigbf3ih85y8y6d587ph0";
2016-08-11 12:51:44 +00:00
};
2018-05-02 09:27:47 +00:00
postPatch = ''
2017-09-22 20:18:21 +00:00
substituteInPlace cmake/jsoncpp.cmake \
2018-05-02 09:27:47 +00:00
--replace "${jsoncppURL}" ${jsoncpp}
2016-09-10 14:03:42 +00:00
'';
cmakeFlags = [
"-DBoost_USE_STATIC_LIBS=OFF"
] ++ stdenv.lib.optionals (!z3Support) [
"-DUSE_Z3=OFF"
] ++ stdenv.lib.optionals (!cvc4Support) [
"-DUSE_CVC4=OFF"
];
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ]
++ stdenv.lib.optionals z3Support [ z3 ]
++ stdenv.lib.optionals cvc4Support [ cvc4 cln gmp ];
2020-05-15 08:36:26 +00:00
checkInputs = [ ncurses python3 ];
# 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''${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
2020-05-15 08:36:26 +00:00
for i in ./scripts/*.sh ./scripts/*.py ./test/*.sh; do
patchShebangs "$i"
done
TERM=xterm ./scripts/tests.sh
popd
'';
2016-08-11 12:51:44 +00:00
2018-05-02 09:27:47 +00:00
meta = with stdenv.lib; {
2016-08-11 12:51:44 +00:00
description = "Compiler for Ethereum smart contract language Solidity";
homepage = "https://github.com/ethereum/solidity";
2018-05-02 09:27:47 +00:00
license = licenses.gpl3;
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ dbrock akru lionello sifmelcara ];
2016-08-11 12:51:44 +00:00
inherit version;
};
}