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

64 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchzip, fetchFromGitHub, boost, cmake
, 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-03-27 06:04:45 +00:00
version = "0.5.7";
rev = "6da8b019e4a155d1f70abe7a3acc0f9765480a9e";
sha256 = "0ii868r0ra6brjnn453kxqvw76p4bwjbvdyqfcn6v1bl2h4s60ir";
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
};
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
};
2018-05-02 09:27:47 +00:00
patches = [
./patches/shared-libs-install.patch
];
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"
2018-05-02 09:27:47 +00:00
"-DBUILD_SHARED_LIBS=ON"
] ++ stdenv.lib.optionals (!z3Support) [
"-DUSE_Z3=OFF"
];
doCheck = stdenv.hostPlatform.isLinux && stdenv.hostPlatform == stdenv.buildPlatform;
2019-03-06 08:27:10 +00:00
checkPhase = "LD_LIBRARY_PATH=./libsolc:./libsolidity:./libevmasm:./libdevcore:./libyul:./liblangutil:./test/tools/yulInterpreter:$LD_LIBRARY_PATH " +
"./test/soltest -p true -- --no-ipc --no-smt --testpath ../test";
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ]
++ stdenv.lib.optionals z3Support [ z3 ];
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;
2018-12-06 10:53:09 +00:00
maintainers = with maintainers; [ dbrock akru lionello ];
2016-08-11 12:51:44 +00:00
inherit version;
};
}