1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

solc: 0.5.10 -> 0.5.11

This commit is contained in:
Lev Livnev 2019-08-23 11:37:02 +01:00
parent f096e5a46d
commit fbf323b6fd
No known key found for this signature in database
GPG key ID: 68FF81E6A7850F49

View file

@ -16,12 +16,12 @@ in
stdenv.mkDerivation rec {
name = "solc-${version}";
version = "0.5.10";
version = "0.5.11";
# upstream suggests avoid using archive generated by github
src = fetchzip {
url = "https://github.com/ethereum/solidity/releases/download/v${version}/solidity_${version}.tar.gz";
sha256 = "1ns562h8blvv32lz462rf5835fs2hgn698mvi6ss5y7ar6k5y5xw";
sha256 = "0679s5pqbfy7fgpb4f3ppgj8iafxb64g046v8vhp29mf3dsdcnyl";
};
patches = stdenv.lib.optionals buildSharedLibs [ ./patches/shared-libs-install.patch ];