aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/networking/cluster/marathon/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/networking/cluster/marathon/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/networking/cluster/marathon/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/nixpkgs/pkgs/applications/networking/cluster/marathon/default.nix b/nixpkgs/pkgs/applications/networking/cluster/marathon/default.nix
deleted file mode 100644
index df571f4cf86..00000000000
--- a/nixpkgs/pkgs/applications/networking/cluster/marathon/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, makeWrapper, jdk, mesos, fetchurl }:
-
-stdenv.mkDerivation rec {
- pname = "marathon";
- version = "1.4.2";
-
- src = fetchurl {
- url = "https://downloads.mesosphere.com/marathon/v${version}/marathon-${version}.tgz";
- sha256 = "6eab65a95c87a989e922aca2b49ba872b50a94e46a8fd4831d1ab41f319d6932";
- };
-
- buildInputs = [ makeWrapper jdk mesos ];
-
- installPhase = ''
- mkdir -p $out/{bin,libexec/marathon}
- cp target/scala-*/marathon*.jar $out/libexec/marathon/${pname}-${version}.jar
-
- makeWrapper ${jdk.jre}/bin/java $out/bin/marathon \
- --add-flags "-Xmx512m -jar $out/libexec/marathon/${pname}-${version}.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; [ kamilchm pradeepchhetri ];
- platforms = platforms.linux;
- };
-}