2017-03-04 10:38:42 +01:00
|
|
|
{ stdenv, fetchzip, fetchgit, boost, cmake }:
|
|
|
|
|
|
|
|
let jsoncpp = fetchzip {
|
|
|
|
url = https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz;
|
|
|
|
sha256 = "0jz93zv17ir7lbxb3dv8ph2n916rajs8i96immwx9vb45pqid3n0";
|
|
|
|
}; in
|
2016-08-11 14:51:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-01-13 22:59:46 +01:00
|
|
|
version = "0.4.8";
|
2016-08-11 14:51:44 +02:00
|
|
|
name = "solc-${version}";
|
|
|
|
|
2016-12-06 13:54:52 +01:00
|
|
|
# Cannot use `fetchFromGitHub' because of submodules
|
2016-11-25 19:10:02 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/ethereum/solidity";
|
2017-01-13 22:59:46 +01:00
|
|
|
rev = "60cc1668517f56ce6ca8225555472e7a27eab8b0";
|
|
|
|
sha256 = "09mwah7c5ca1bgnqp5qgghsi6mbsi7p16z8yxm0aylsn2cjk23na";
|
2016-08-11 14:51:44 +02:00
|
|
|
};
|
|
|
|
|
2016-09-10 16:03:42 +02:00
|
|
|
patchPhase = ''
|
2016-11-25 19:10:02 +01:00
|
|
|
echo >commit_hash.txt 2dabbdf06f414750ef0425c664f861aeb3e470b8
|
2017-03-04 10:38:42 +01:00
|
|
|
substituteInPlace deps/jsoncpp.cmake \
|
|
|
|
--replace https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz ${jsoncpp}
|
|
|
|
substituteInPlace cmake/EthCompilerSettings.cmake \
|
|
|
|
--replace 'add_compile_options(-Werror)' ""
|
2016-09-10 16:03:42 +02:00
|
|
|
'';
|
|
|
|
|
2017-03-04 10:38:42 +01:00
|
|
|
buildInputs = [ boost cmake ];
|
2016-08-11 14:51:44 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Compiler for Ethereum smart contract language Solidity";
|
|
|
|
longDescription = "This package also includes `lllc', the LLL compiler.";
|
|
|
|
homepage = https://github.com/ethereum/solidity;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2016-08-17 23:30:27 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.dbrock ];
|
2016-08-11 14:51:44 +02:00
|
|
|
inherit version;
|
|
|
|
};
|
|
|
|
}
|