diff --git a/pkgs/development/tools/activator/default.nix b/pkgs/development/tools/activator/default.nix deleted file mode 100644 index 394c60e0fdd7..000000000000 --- 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; - }; - -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1467add1e918..4655c98c2e1a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6324,7 +6324,13 @@ with pkgs; ### DEVELOPMENT / TOOLS - activator = callPackage ../development/tools/activator { }; + activator = throw '' + Typesafe Activator was removed in 2017-05-08 as the actual package reaches end of life. + + See https://github.com/NixOS/nixpkgs/pull/25616 + and http://www.lightbend.com/community/core-tools/activator-and-sbt + for more information. + ''; alloy = callPackage ../development/tools/alloy { };