nixpkgs/pkgs/applications/blockchains/ergo/default.nix

28 lines
744 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jre }:
2020-05-24 18:38:54 +00:00
stdenv.mkDerivation rec {
pname = "ergo";
2021-02-28 11:36:49 +00:00
version = "4.0.7";
2020-05-24 18:38:54 +00:00
src = fetchurl {
url = "https://github.com/ergoplatform/ergo/releases/download/v${version}/ergo-${version}.jar";
2021-02-28 11:36:49 +00:00
sha256 = "sha256-CDNH7vYLG7Gn22yl+cXtGAD+c8tbNU52FmdxneTM2u4=";
2020-05-24 18:38:54 +00:00
};
nativeBuildInputs = [ makeWrapper ];
dontUnpack = true;
installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/ergo --add-flags "-jar $src"
'';
meta = with lib; {
2020-05-24 18:38:54 +00:00
description = "Open protocol that implements modern scientific ideas in the blockchain area";
2020-05-26 15:16:47 +00:00
homepage = "https://ergoplatform.org/en/";
license = licenses.cc0;
platforms = platforms.all;
2020-05-24 18:38:54 +00:00
maintainers = with maintainers; [ mmahut ];
};
}