ergo 5.0.14 -> 5.0.15 https://github.com/ergoplatform/ergo/releases attrpath: ergo Checking auto update branch... No auto update branch exists Old version 5.0.14" not present in master derivation file with contents: { lib, stdenv, fetchurl, makeWrapper, jre }: stdenv.mkDerivation rec { pname = "ergo"; version = "5.0.15"; src = fetchurl { url = "https://github.com/ergoplatform/ergo/releases/download/v${version}/ergo-${version}.jar"; sha256 = "sha256-/VMuye6uCQghjwotjmWEe55RADVwHCpH6PelZXVXSzM="; }; nativeBuildInputs = [ makeWrapper ]; dontUnpack = true; installPhase = '' makeWrapper ${jre}/bin/java $out/bin/ergo --add-flags "-jar $src" ''; meta = with lib; { description = "Open protocol that implements modern scientific ideas in the blockchain area"; homepage = "https://ergoplatform.org/en/"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; license = licenses.cc0; platforms = platforms.all; maintainers = with maintainers; [ mmahut ]; }; }