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

29 lines
775 B
Nix
Raw Normal View History

2016-08-11 05:51:44 -07:00
{ stdenv, fetchFromGitHub, boost, cmake, jsoncpp }:
stdenv.mkDerivation rec {
2016-10-19 10:35:25 -07:00
version = "0.4.2";
2016-08-11 05:51:44 -07:00
name = "solc-${version}";
src = fetchFromGitHub {
owner = "ethereum";
repo = "solidity";
rev = "v${version}";
2016-10-19 10:35:25 -07:00
sha256 = "1d5x3psz8a9z9jnm30aspfvrpd9kblr14cn5vyl21p27x2vdlzr4";
2016-08-11 05:51:44 -07:00
};
2016-09-10 07:03:42 -07:00
patchPhase = ''
2016-10-19 10:35:25 -07:00
echo >commit_hash.txt af6afb0415761b53721f89c7f65064807f41cbd3
2016-09-10 07:03:42 -07:00
'';
2016-08-11 05:51:44 -07:00
buildInputs = [ boost cmake jsoncpp ];
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 14:30:27 -07:00
maintainers = [ stdenv.lib.maintainers.dbrock ];
2016-08-11 05:51:44 -07:00
inherit version;
};
}