2015-02-19 10:32:02 +01:00
|
|
|
{ stdenv, makeWrapper, jdk, mesos, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-05-14 17:18:17 +02:00
|
|
|
name = "marathon-${version}";
|
2017-04-27 11:14:56 +02:00
|
|
|
version = "1.4.2";
|
2015-02-19 10:32:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-15 16:13:05 +02:00
|
|
|
url = "https://downloads.mesosphere.com/marathon/v${version}/marathon-${version}.tgz";
|
2017-04-27 11:14:56 +02:00
|
|
|
sha256 = "6eab65a95c87a989e922aca2b49ba872b50a94e46a8fd4831d1ab41f319d6932";
|
2015-02-19 10:32:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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" \
|
2016-01-29 17:52:56 +01:00
|
|
|
--set "MESOS_NATIVE_JAVA_LIBRARY" "$MESOS_NATIVE_JAVA_LIBRARY"
|
2015-02-19 10:32:02 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://mesosphere.github.io/marathon;
|
2015-04-28 10:54:58 +02:00
|
|
|
description = "Cluster-wide init and control system for services in cgroups or Docker containers";
|
2015-02-19 10:32:02 +01:00
|
|
|
license = licenses.asl20;
|
2017-08-29 20:37:59 +02:00
|
|
|
maintainers = with maintainers; [ kamilchm kevincox pradeepchhetri ];
|
2015-02-19 10:32:02 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|