3
0
Fork 0
forked from mirrors/nixpkgs

solc: 0.3.6 -> 0.4.1

This commit is contained in:
Daniel Brockman 2016-09-10 16:03:42 +02:00
parent 45459c1c27
commit 7e78217f7c

View file

@ -1,16 +1,20 @@
{ stdenv, fetchFromGitHub, boost, cmake, jsoncpp }:
stdenv.mkDerivation rec {
version = "0.3.6";
version = "0.4.1";
name = "solc-${version}";
src = fetchFromGitHub {
owner = "ethereum";
repo = "solidity";
rev = "v${version}";
sha256 = "1cynqwy8wr63l3l4wv9z6shhcy6lq0q8pbsh3nav0dg9qgj9sg57";
sha256 = "0ww8s0dngx6sbjyz7pr14xl3bbmfzx3nwc8xd9fx8ddg9682cwry";
};
patchPhase = ''
echo >commit_hash.txt 4fc6fc2ca59579fae2472df319c2d8d31fe5bde5
'';
buildInputs = [ boost cmake jsoncpp ];
meta = {