summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2017-05-08 18:03:02 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2017-05-08 19:02:25 +0200
commit25a3563102e2beeae64257671581c93a2ef6e4b0 (patch)
treeaf504d8b13beb7ae3210fbe8c92d127a3f1ebed0 /pkgs/development/tools
parente2700861fb4b5598695209e631a22a2cd44bb2c9 (diff)
downloadnixpkgs-25a3563102e2beeae64257671581c93a2ef6e4b0.tar
nixpkgs-25a3563102e2beeae64257671581c93a2ef6e4b0.tar.gz
nixpkgs-25a3563102e2beeae64257671581c93a2ef6e4b0.tar.bz2
nixpkgs-25a3563102e2beeae64257671581c93a2ef6e4b0.tar.lz
nixpkgs-25a3563102e2beeae64257671581c93a2ef6e4b0.tar.xz
nixpkgs-25a3563102e2beeae64257671581c93a2ef6e4b0.tar.zst
nixpkgs-25a3563102e2beeae64257671581c93a2ef6e4b0.zip
activator: remove package from package-set
the typesafe activator is about to reach end of life at the end of this
month (2017-05) and the servers will be decommissioned at the ond of 2017.

See http://www.lightbend.com/community/core-tools/activator-and-sbt for
and the project's readme
(https://github.com/typesafehub/activator/blob/master/README.md) for further reference.
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/activator/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/tools/activator/default.nix b/pkgs/development/tools/activator/default.nix
deleted file mode 100644
index 394c60e0fdd..00000000000
--- a/pkgs/development/tools/activator/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, fetchurl, unzip, jre }:
-
-stdenv.mkDerivation rec {
-
-  name = "${pname}-${version}";
-  pname = "activator";
-  version = "1.3.12";
-
-  src = fetchurl {
-    url = "http://downloads.typesafe.com/typesafe-${pname}/${version}/typesafe-${name}.zip";
-    sha256 = "0c7mxznfgvywnyvr8l5jh4cp67ila5cdq14p6jwrkh6lwif3ah1p";
-  };
-
-  buildInputs = [ unzip jre ];
-
-  installPhase = ''
-    mkdir -p $out/{bin,lib,libexec}
-    mv repository $out/lib
-    sed -i -e "s,declare.*activator_home.*=.*,declare -r activator_home=$out/lib/,g" bin/activator
-    mv bin/activator $out/bin
-    mv libexec/activator-launch-${version}.jar $out/libexec
-  '';
-
-  meta = with stdenv.lib; {
-    description = "A scafollding tool for setting up reactive projects";
-    homepage = "http://typesafe.com/activator";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ edwtjo cko ];
-    platforms = with platforms; unix;
-  };
-
-}