31 lines
1017 B
Nix
31 lines
1017 B
Nix
{ stdenv, makeWrapper, jdk, mesos, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "marathon-${version}";
|
|
version = "0.15.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.mesosphere.io/marathon/v${version}/marathon-${version}.tgz";
|
|
sha256 = "1br4k596sjp4cf5l2nyaqhlsfdr443n08fvdyf4kilhr803x2rjq";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper jdk mesos ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,libexec/marathon}
|
|
cp target/scala-*/marathon*.jar $out/libexec/marathon/${name}.jar
|
|
|
|
makeWrapper ${jdk.jre}/bin/java $out/bin/marathon \
|
|
--add-flags "-Xmx512m -jar $out/libexec/marathon/${name}.jar" \
|
|
--set "MESOS_NATIVE_JAVA_LIBRARY" "$MESOS_NATIVE_JAVA_LIBRARY"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://mesosphere.github.io/marathon;
|
|
description = "Cluster-wide init and control system for services in cgroups or Docker containers";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rushmorem kamilchm kevincox ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|