2018-05-02 12:27:47 +03:00
|
|
|
{ stdenv, fetchzip, fetchFromGitHub, boost, cmake, z3 }:
|
2017-03-04 12:38:42 +03:00
|
|
|
|
2017-07-05 17:31:42 +03:00
|
|
|
let
|
2018-12-06 13:53:09 +03:00
|
|
|
version = "0.5.1";
|
|
|
|
rev = "c8a2cb62832afb2dc09ccee6fd42c1516dfdb981";
|
|
|
|
sha256 = "0d6mfnixlr9m5yr3r4p6cv6vwrrivcamyar5d0f9rvir9w9ypzrr";
|
2018-06-10 11:37:58 +03:00
|
|
|
jsoncppURL = https://github.com/open-source-parsers/jsoncpp/archive/1.8.4.tar.gz;
|
2017-07-05 17:31:42 +03:00
|
|
|
jsoncpp = fetchzip {
|
|
|
|
url = jsoncppURL;
|
2018-06-10 11:37:58 +03:00
|
|
|
sha256 = "1z0gj7a6jypkijmpknis04qybs1hkd04d1arr3gy89lnxmp6qzlm";
|
2017-07-05 17:31:42 +03:00
|
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2016-08-11 15:51:44 +03:00
|
|
|
name = "solc-${version}";
|
|
|
|
|
2018-05-02 12:27:47 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ethereum";
|
|
|
|
repo = "solidity";
|
|
|
|
inherit rev sha256;
|
2016-08-11 15:51:44 +03:00
|
|
|
};
|
|
|
|
|
2018-05-02 12:27:47 +03:00
|
|
|
patches = [
|
|
|
|
./patches/shared-libs-install.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
touch prerelease.txt
|
|
|
|
echo >commit_hash.txt "${rev}"
|
2017-09-22 23:18:21 +03:00
|
|
|
substituteInPlace cmake/jsoncpp.cmake \
|
2018-05-02 12:27:47 +03:00
|
|
|
--replace "${jsoncppURL}" ${jsoncpp}
|
2016-09-10 17:03:42 +03:00
|
|
|
'';
|
|
|
|
|
2017-08-30 19:21:17 +03:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBoost_USE_STATIC_LIBS=OFF"
|
2018-05-02 12:27:47 +03:00
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
2017-08-30 19:21:17 +03:00
|
|
|
];
|
|
|
|
|
2018-06-10 11:37:58 +03:00
|
|
|
doCheck = stdenv.hostPlatform.isLinux && stdenv.hostPlatform == stdenv.buildPlatform;
|
2018-12-14 16:05:46 +03:00
|
|
|
checkPhase = "LD_LIBRARY_PATH=./libsolc:./libsolidity:./libevmasm:./libdevcore:./libyul:./liblangutil:$LD_LIBRARY_PATH " +
|
2018-06-10 11:37:58 +03:00
|
|
|
"./test/soltest -p -- --no-ipc --no-smt --testpath ../test";
|
|
|
|
|
2017-08-30 19:21:17 +03:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ boost z3 ];
|
2016-08-11 15:51:44 +03:00
|
|
|
|
2018-05-02 12:27:47 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-08-11 15:51:44 +03:00
|
|
|
description = "Compiler for Ethereum smart contract language Solidity";
|
|
|
|
homepage = https://github.com/ethereum/solidity;
|
2018-05-02 12:27:47 +03:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2018-12-06 13:53:09 +03:00
|
|
|
maintainers = with maintainers; [ dbrock akru lionello ];
|
2016-08-11 15:51:44 +03:00
|
|
|
inherit version;
|
|
|
|
};
|
|
|
|
}
|