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

41 lines
1.3 KiB
Nix
Raw Normal View History

{ 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 15:51:44 +03:00
2017-05-19 17:34:10 +03:00
let commit = "68ef5810593e7c8092ed41d5f474dd43141624eb"; in
2016-08-11 15:51:44 +03:00
stdenv.mkDerivation rec {
2017-05-19 17:34:10 +03:00
version = "0.4.11";
2016-08-11 15:51:44 +03:00
name = "solc-${version}";
# Cannot use `fetchFromGitHub' because of submodules
2016-11-25 21:10:02 +03:00
src = fetchgit {
url = "https://github.com/ethereum/solidity";
2017-05-19 17:34:10 +03:00
rev = commit;
sha256 = "13zycybf23yvf3hkf9zgw9gbc1y4ifzxaf7sll69bsn24fcyq961";
2016-08-11 15:51:44 +03:00
};
2016-09-10 17:03:42 +03:00
patchPhase = ''
2017-05-19 17:34:10 +03:00
echo >commit_hash.txt ${commit}
echo >prerelease.txt
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 17:03:42 +03:00
'';
buildInputs = [ boost cmake ];
2016-08-11 15:51:44 +03: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-18 00:30:27 +03:00
maintainers = [ stdenv.lib.maintainers.dbrock ];
2016-08-11 15:51:44 +03:00
inherit version;
};
}