1 { lib, stdenv, fetchurl, makeWrapper, jre }:
3 stdenv.mkDerivation rec {
8 url = "https://hyperledger.jfrog.io/artifactory/${pname}-binaries/${pname}/${version}/${pname}-${version}.tar.gz";
9 sha256 = "sha256-CC24z0+2dSeqDddX5dJUs7SX9QJ8Iyh/nAp0pqdDvwg=";
12 nativeBuildInputs = [ makeWrapper ];
19 wrapProgram $out/bin/${pname} --set JAVA_HOME "${jre}"
23 description = "An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client";
24 homepage = "https://www.hyperledger.org/projects/besu";
25 license = licenses.asl20;
26 sourceProvenance = with sourceTypes; [ binaryBytecode ];
27 platforms = platforms.all;
28 maintainers = with maintainers; [ mmahut ];