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

59 lines
1.5 KiB
Nix
Raw Normal View History

2018-05-02 10:27:47 +01:00
{ stdenv, fetchzip, fetchFromGitHub, boost, cmake, z3 }:
2017-07-05 15:31:42 +01:00
let
2018-05-02 10:27:47 +01:00
version = "0.4.23";
rev = "124ca40dc525a987a88176c6e5170978e82fa290";
sha256 = "07l8rfqh95yrdmbxc4pfb77s06k5v65dk3rgdqscqmwchkndrmm0";
2017-07-05 15:31:42 +01:00
jsoncppURL = https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz;
jsoncpp = fetchzip {
url = jsoncppURL;
sha256 = "0jz93zv17ir7lbxb3dv8ph2n916rajs8i96immwx9vb45pqid3n0";
};
in
2017-05-19 15:34:10 +01:00
2017-07-05 15:31:42 +01:00
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/boost-shared-libs.patch
./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}
substituteInPlace cmake/EthCompilerSettings.cmake \
2018-05-02 10:27:47 +01:00
--replace "add_compile_options(-Werror)" ""
2016-09-10 15:03:42 +01:00
'';
cmakeFlags = [
"-DBoost_USE_STATIC_LIBS=OFF"
2018-05-02 10:27:47 +01:00
"-DBUILD_SHARED_LIBS=ON"
"-DINSTALL_LLLC=ON"
"-DTESTS=OFF"
];
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;
};
}