2018-05-02 10:27:47 +01:00
|
|
|
{ stdenv, fetchzip, fetchFromGitHub, boost, cmake, z3 }:
|
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
|
|
|
version = "0.4.24";
|
|
|
|
rev = "e67f0147998a9e3835ed3ce8bf6a0a0c634216c5";
|
|
|
|
sha256 = "1gy2miv6ia1z98zy6w4y03balwfr964bnvwzyg8v7pn2mayqnaap";
|
|
|
|
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
|
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2016-08-11 13:51:44 +01:00
|
|
|
name = "solc-${version}";
|
|
|
|
|
2018-05-02 10:27:47 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ethereum";
|
|
|
|
repo = "solidity";
|
|
|
|
inherit rev sha256;
|
2016-08-11 13:51:44 +01:00
|
|
|
};
|
|
|
|
|
2018-05-02 10:27:47 +01:00
|
|
|
patches = [
|
|
|
|
./patches/shared-libs-install.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
touch prerelease.txt
|
|
|
|
echo >commit_hash.txt "${rev}"
|
2017-09-22 21:18:21 +01:00
|
|
|
substituteInPlace cmake/jsoncpp.cmake \
|
2018-05-02 10:27:47 +01:00
|
|
|
--replace "${jsoncppURL}" ${jsoncpp}
|
2018-06-10 09:37:58 +01:00
|
|
|
|
|
|
|
# To allow non-standard CMAKE_INSTALL_LIBDIR (fixed in upstream, not yet released)
|
|
|
|
substituteInPlace cmake/jsoncpp.cmake \
|
|
|
|
--replace "\''${CMAKE_INSTALL_LIBDIR}" "lib" \
|
|
|
|
--replace "# Build static lib but suitable to be included in a shared lib." "-DCMAKE_INSTALL_LIBDIR=lib"
|
2016-09-10 15:03:42 +01:00
|
|
|
'';
|
|
|
|
|
2017-08-30 17:21:17 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBoost_USE_STATIC_LIBS=OFF"
|
2018-05-02 10:27:47 +01:00
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
"-DINSTALL_LLLC=ON"
|
2017-08-30 17:21:17 +01:00
|
|
|
];
|
|
|
|
|
2018-06-10 09:37:58 +01:00
|
|
|
doCheck = stdenv.hostPlatform.isLinux && stdenv.hostPlatform == stdenv.buildPlatform;
|
|
|
|
checkPhase = "LD_LIBRARY_PATH=./libsolc:./libsolidity:./liblll:./libevmasm:./libdevcore:$LD_LIBRARY_PATH " +
|
|
|
|
"./test/soltest -p -- --no-ipc --no-smt --testpath ../test";
|
|
|
|
|
2017-08-30 17:21:17 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ boost z3 ];
|
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";
|
|
|
|
longDescription = "This package also includes `lllc', the LLL compiler.";
|
|
|
|
homepage = https://github.com/ethereum/solidity;
|
2018-05-02 10:27:47 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
maintainers = with maintainers; [ dbrock akru ];
|
2016-08-11 13:51:44 +01:00
|
|
|
inherit version;
|
|
|
|
};
|
|
|
|
}
|