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

86 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchzip, fetchFromGitHub, boost, cmake, ncurses, python2
, z3Support ? true, z3 ? null
}:
assert z3Support -> z3 != null;
2019-02-20 23:45:28 +00:00
assert z3Support -> stdenv.lib.versionAtLeast z3.version "4.6.0";
2017-07-05 14:31:42 +00:00
let
2019-05-30 09:07:12 +00:00
version = "0.5.9";
rev = "c68bc34e9466ef22326dd9072d557c56160e9092";
sha256 = "1b611piwnwiwk4dcvn2qm4wjb9msa385lpx81y3k669ga3ip9rkc";
jsoncppURL = https://github.com/open-source-parsers/jsoncpp/archive/1.8.4.tar.gz;
2017-07-05 14:31:42 +00:00
jsoncpp = fetchzip {
url = jsoncppURL;
sha256 = "1z0gj7a6jypkijmpknis04qybs1hkd04d1arr3gy89lnxmp6qzlm";
2017-07-05 14:31:42 +00:00
};
buildSharedLibs = stdenv.hostPlatform.isLinux;
2017-07-05 14:31:42 +00:00
in
stdenv.mkDerivation {
2016-08-11 12:51:44 +00:00
name = "solc-${version}";
2018-05-02 09:27:47 +00:00
src = fetchFromGitHub {
owner = "ethereum";
repo = "solidity";
inherit rev sha256;
2016-08-11 12:51:44 +00:00
};
patches = stdenv.lib.optionals buildSharedLibs [ ./patches/shared-libs-install.patch ];
2018-05-02 09:27:47 +00:00
postPatch = ''
touch prerelease.txt
echo >commit_hash.txt "${rev}"
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 buildSharedLibs [
2018-05-02 09:27:47 +00:00
"-DBUILD_SHARED_LIBS=ON"
] ++ stdenv.lib.optionals (!z3Support) [
"-DUSE_Z3=OFF"
];
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ] ++ stdenv.lib.optionals z3Support [ z3 ];
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 12:51:44 +00:00
2018-05-02 09:27:47 +00:00
outputs = [ "out" "dev" ];
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;
};
}