Unverified Commit 35a24e21 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #325642 from emilioziniades/init-maelstrom

maelstrom-clj: init at 0.2.3
parents 419861aa 7f3e7bcf
Loading
Loading
Loading
Loading
+57 −0
Original line number Diff line number Diff line
{ stdenv
, lib
, fetchurl
, makeWrapper
, git
, coreutils
, jdk
, gnuplot
, graphviz
}:
stdenv.mkDerivation rec {
  pname = "maelstrom";
  version = "0.2.3";

  src = fetchurl {
    url = "https://github.com/jepsen-io/maelstrom/releases/download/v${version}/maelstrom.tar.bz2";
    hash = "sha256-ISS2qma139Jz9eDxLJvULkqDZeu1vyx9ot4uO0LIVho=";
  };

  installPhase = ''
    runHook preInstall

    mkdir $out
    cp -R lib $out/lib

    # see https://github.com/jepsen-io/maelstrom/blob/b91beef83ee40add17dfe0baf2df272869e144cf/pkg/maelstrom
    makeWrapper ${jdk}/bin/java $out/bin/maelstrom \
      --add-flags -Djava.awt.headless=true \
      --add-flags "-jar $out/lib/maelstrom.jar" \
      --set PATH ${lib.makeBinPath runtimeDependencies}

    runHook postInstall
  '';

  nativeBuildInputs = [
    makeWrapper
  ];

  runtimeDependencies = [
    git
    coreutils
    jdk
    gnuplot
    graphviz
  ];

  meta = with lib; {
    description = "Workbench for writing toy implementations of distributed systems";
    homepage = "https://github.com/jepsen-io/maelstrom";
    changelog = "https://github.com/jepsen-io/maelstrom/releases/tag/${version}";
    mainProgram = "maelstrom";
    sourceProvenance = [ sourceTypes.binaryBytecode ];
    license = licenses.epl10;
    maintainers = [ maintainers.emilioziniades ];
    platforms = platforms.linux ++ platforms.darwin;
  };
}