mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
31 lines
896 B
Nix
31 lines
896 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ergo";
|
|
version = "5.0.22";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ergoplatform/ergo/releases/download/v${version}/ergo-${version}.jar";
|
|
sha256 = "sha256-fuea76l6kIjk9n/LlktZmJ1B8wiwSfEeHUkTr+I1a2c=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
makeWrapper ${jre}/bin/java $out/bin/ergo --add-flags "-jar $src"
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) ergo; };
|
|
|
|
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 ];
|
|
mainProgram = "ergo";
|
|
};
|
|
}
|