nixpkgs/pkgs/applications/networking/cluster/marathon/default.nix

31 lines
1.0 KiB
Nix
Raw Normal View History

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