28 lines
745 B
Nix
28 lines
745 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ergo";
|
|
version = "4.0.13";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ergoplatform/ergo/releases/download/v${version}/ergo-${version}.jar";
|
|
sha256 = "sha256-HNpyUD2Tep2XnY3lr5a3ec+NmJtt0VvJx6ujVvSugXo=";
|
|
};
|
|
|
|
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/";
|
|
license = licenses.cc0;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ mmahut ];
|
|
};
|
|
}
|