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

49 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchzip, fetchgit, boost, cmake, z3 }:
2017-07-05 14:31:42 +00:00
let
version = "0.4.16";
rev = "d7661dd97460250b4e1127b9e7ea91e116143780";
sha256 = "1fd69pdhkkkvbkrxipkck1icpqkpdskjzar48a1yzdsx3l8s4lil";
2017-07-05 14:31:42 +00: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 14:34:10 +00:00
2017-07-05 14:31:42 +00:00
stdenv.mkDerivation {
2016-08-11 12:51:44 +00:00
name = "solc-${version}";
# Cannot use `fetchFromGitHub' because of submodules
2016-11-25 18:10:02 +00:00
src = fetchgit {
url = "https://github.com/ethereum/solidity";
2017-07-05 14:31:42 +00:00
inherit rev sha256;
2016-08-11 12:51:44 +00:00
};
2016-09-10 14:03:42 +00:00
patchPhase = ''
2017-07-05 14:31:42 +00:00
echo >commit_hash.txt '${rev}'
2017-05-19 14:34:10 +00:00
echo >prerelease.txt
substituteInPlace deps/jsoncpp.cmake \
2017-07-05 14:31:42 +00:00
--replace '${jsoncppURL}' ${jsoncpp}
substituteInPlace cmake/EthCompilerSettings.cmake \
--replace 'add_compile_options(-Werror)' ""
2016-09-10 14:03:42 +00:00
'';
cmakeFlags = [
"-DBoost_USE_STATIC_LIBS=OFF"
];
nativeBuildInputs = [ cmake ];
buildInputs = [ boost z3 ];
2016-08-11 12:51:44 +00: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;
2017-07-12 13:43:29 +00:00
platforms = with stdenv.lib.platforms; linux ++ darwin;
2016-08-17 21:30:27 +00:00
maintainers = [ stdenv.lib.maintainers.dbrock ];
2016-08-11 12:51:44 +00:00
inherit version;
};
}