Skip to content

Commit

Permalink
chore: update packages (#403)
Browse files Browse the repository at this point in the history
* crytic-compile: 0.3.4 -> 0.3.5

Diff: crytic/crytic-compile@refs/tags/0.3.4...0.3.5

* erigon: 2.52.5 -> 2.53.4

Diff: erigontech/erigon@v2.52.5...v2.53.4

* geth-sealer: geth-sealer-v1.12.0 -> geth-sealer-v1.13.4

Diff: manifoldfinance/geth-sealer@geth-sealer-v1.12.0...geth-sealer-v1.13.4

* nimbus: 23.10.0 -> 23.10.1

Diff: status-im/nimbus-eth2@v23.10.0...v23.10.1

* slither: 0.9.6 -> 0.10.0

Diff: crytic/slither@refs/tags/0.9.6...0.10.0

* chore(slither): move to nixpkgs for crytic-compile and fix build

* ssvnode: 0.5.4 -> 1.1.0

Diff: ssvlabs/ssv@v0.5.4...v1.1.0

* charon: 0.17.1 -> 0.17.2

Diff: ObolNetwork/charon@refs/tags/v0.17.1...v0.17.2

* chore: update besu 23.10.0 -> 23.10.1

---------

Co-authored-by: Bottie McBotFace <[email protected]>
Co-authored-by: Sergey Yakovlev <[email protected]>
  • Loading branch information
3 people authored Nov 8, 2023
1 parent 717c5dc commit 937779b
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 65 deletions.
4 changes: 2 additions & 2 deletions packages/clients/consensus/nimbus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
}:
stdenv.mkDerivation rec {
pname = "nimbus-eth2";
version = "23.10.0";
version = "23.10.1";

src = fetchFromGitHub {
owner = "status-im";
repo = pname;
rev = "v${version}";
hash = "sha256-eXfHwexoWbrlsXwdNT2TQWlFl526aQfRNxxW6s/khHA=";
hash = "sha256-+/AmkgXblg5Gf7VNbVz2uqAs+o2Bol9IIZS3i3t7r94=";
fetchSubmodules = true;
};

Expand Down
4 changes: 2 additions & 2 deletions packages/clients/execution/besu/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
}:
stdenv.mkDerivation rec {
pname = "besu";
version = "23.10.0";
version = "23.10.1";

src = fetchurl {
url = "https://hyperledger.jfrog.io/hyperledger/${pname}-binaries/${pname}/${version}/${pname}-${version}.tar.gz";
hash = "sha256-PHXzeSv9sIknBbN48Li/wU72zs8div5xHY2Gh+1mh88=";
hash = "sha256-4nZF80VYPz7kR+VBgwI4LG+DNdLahwe90gAzqr2Gzkw=";
};

nativeBuildInputs = [makeWrapper];
Expand Down
6 changes: 3 additions & 3 deletions packages/clients/execution/erigon/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
}:
buildGoModule rec {
pname = "erigon";
version = "2.52.5";
version = "2.53.4";

src = fetchFromGitHub {
owner = "ledgerwatch";
repo = pname;
rev = "v${version}";
hash = "sha256-GSAS+xlyak5S4km1ieXwQq7usjVT4r1i2sT3j77cmg0=";
hash = "sha256-kvLaRjJ/VWiRCjnSEmPfE6VsqovV7KrvT9QBgd6wP2E=";
fetchSubmodules = true;
};

vendorHash = "sha256-yC91IIqdB/0KY7PcCSPNCTs2qXgY4JISYapMNpFvvig=";
vendorHash = "sha256-415ALovZo6NjZD/yDw3ckYz2NCuNMYwV34Up7bTBdOQ=";
proxyVendor = true;

# Build errors in mdbx when format hardening is enabled:
Expand Down
6 changes: 3 additions & 3 deletions packages/clients/execution/geth-sealer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
}:
buildGoModule rec {
pname = "geth-sealer";
version = "geth-sealer-v1.12.0";
version = "geth-sealer-v1.13.4";

src = fetchFromGitHub {
owner = "manifoldfinance";
repo = "geth-sealer";
rev = "${version}";
hash = "sha256-0Ym06RshDzn6+DEoBkjAAlvkWkMKSWcKF0xVR2KJWX8=";
hash = "sha256-bvo+WRI08raxJlGKVHAU60DvV4YJ6qrSs3kqLya8T6M=";
};

vendorHash = "sha256-k5MbOiJDvWFnaAPViNRHeqFa64XPZ3ImkkvkmTTscNA=";
vendorHash = "sha256-YmUgKO3JtVOE/YACqL/QBiyR1jT/jPCH+Gb0xYwkJEc=";

ldflags = ["-s" "-w"];

Expand Down
3 changes: 1 addition & 2 deletions packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,13 @@
vscode-plugin-consensys-vscode-solidity-visual-editor = callPackage ./editors/vscode/extensions/consensys.vscode-solidity-auditor {};

# Solidity
slither = callPackageUnstable ./solidity/analyzers/slither {inherit crytic-compile;};
slither = callPackageUnstable ./solidity/analyzers/slither {};

# Libs
evmc = callPackage ./libs/evmc {};
mcl = callPackage ./libs/mcl {};
bls = callPackage ./libs/bls {};
blst = callPackage ./libs/blst {};
crytic-compile = callPackageUnstable ./libs/crytic-compile {};
};

apps = platformApps self'.packages {
Expand Down
4 changes: 2 additions & 2 deletions packages/dvt/charon/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
}:
buildGoModule rec {
pname = "charon";
version = "0.17.1";
version = "0.17.2";

src = fetchFromGitHub {
owner = "ObolNetwork";
repo = "${pname}";
rev = "refs/tags/v${version}";
hash = "sha256-v9nqm1LCehuAZ0S3BDo4yCfRsfxReu37s082nm4KbMA=";
hash = "sha256-+qqGFoBR2tFIs1ps98/WzM5RqI+E3i1B0g0+TKTzz7E=";
};

vendorHash = "sha256-SOsnjPvIJ2dqrWJD7dW/QZBkQZW2vdzTOALFCLGb2Ys=";
Expand Down
10 changes: 5 additions & 5 deletions packages/dvt/ssvnode/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
bls,
mcl,
buildGo119Module,
buildGoModule,
fetchFromGitHub,
}:
buildGo119Module rec {
buildGoModule rec {
pname = "ssv";
version = "0.5.4";
version = "1.1.0";

src = fetchFromGitHub {
owner = "bloxapp";
repo = "${pname}";
rev = "v${version}";
hash = "sha256-tMk91zKURbqREdeBnz6bc2UqKOBZA1TY6ueJdU0vAFM=";
hash = "sha256-AglorMoa7NJlSw13jqR0GDGzzsF93iL8DHbdKq4m3s0=";
};

vendorHash = "sha256-u5/TVnpSBOdt3Hq3+JVVyfUwBy1iw51JRdtlB799nXY=";
vendorHash = "sha256-wL5UzetQKYl9fWIlOZKjimbhWyIBv+orugDq8sqQGIs=";

buildInputs = [bls mcl];

Expand Down
43 changes: 0 additions & 43 deletions packages/libs/crytic-compile/default.nix

This file was deleted.

6 changes: 3 additions & 3 deletions packages/solidity/analyzers/slither/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
lib,
fetchFromGitHub,
python3,
crytic-compile,
}:
python3.pkgs.buildPythonPackage rec {
pname = "slither";
version = "0.9.6";
version = "0.10.0";
format = "pyproject";

disabled = python3.pythonOlder "3.7";
Expand All @@ -15,7 +14,7 @@ python3.pkgs.buildPythonPackage rec {
owner = "crytic";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-c6H7t+aPPWn1i/30G9DLOmwHhdHHHbcP3FRVVjk1XR4=";
hash = "sha256-lyjHubnYIwGiA6uAt9erKlTr2sCRGHQy/ZkNByFrFgM=";
};

nativeBuildInputs = with python3.pkgs; [
Expand All @@ -30,6 +29,7 @@ python3.pkgs.buildPythonPackage rec {
crytic-compile
packaging
prettytable
web3
];

# required for import check to work
Expand Down

0 comments on commit 937779b

Please sign in to comment.