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

56 lines
1.6 KiB
Nix
Raw Normal View History

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