summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/plugins.nix
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2022-06-21 15:22:59 +0200
committerPavol Rusnak <pavol@rusnak.io>2022-06-21 15:23:41 +0200
commit1367f89a7332aa9ab52fe3307c3175056bfd6d60 (patch)
tree3e3d96371f96c9b097b7f14b4b24cdc64d484dbf /pkgs/applications/editors/eclipse/plugins.nix
parente2c261f2c00464ef7cbb4d7ee7d274215160cd9c (diff)
downloadnixpkgs-1367f89a7332aa9ab52fe3307c3175056bfd6d60.tar
nixpkgs-1367f89a7332aa9ab52fe3307c3175056bfd6d60.tar.gz
nixpkgs-1367f89a7332aa9ab52fe3307c3175056bfd6d60.tar.bz2
nixpkgs-1367f89a7332aa9ab52fe3307c3175056bfd6d60.tar.lz
nixpkgs-1367f89a7332aa9ab52fe3307c3175056bfd6d60.tar.xz
nixpkgs-1367f89a7332aa9ab52fe3307c3175056bfd6d60.tar.zst
nixpkgs-1367f89a7332aa9ab52fe3307c3175056bfd6d60.zip
eclipse.plugins.anyedittools: 2.7.1.201709201439 -> 2.7.2.202006062100
fix dead upstream urls, replace with new upstream
Diffstat (limited to 'pkgs/applications/editors/eclipse/plugins.nix')
-rw-r--r--pkgs/applications/editors/eclipse/plugins.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index f81d439a3d2..cb9324ee158 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -185,20 +185,20 @@ rec {
 
   anyedittools = buildEclipsePlugin rec {
     name = "anyedit-${version}";
-    version = "2.7.1.201709201439";
+    version = "2.7.2.202006062100";
 
     srcFeature = fetchurl {
-      url = "http://andrei.gmxhome.de/eclipse/features/AnyEditTools_${version}.jar";
-      sha256 = "1wqzl7wq85m9gil8rnvly45ps0a2m0svw613pg6djs5i7amhnayh";
+      url = "https://github.com/iloveeclipse/plugins/blob/latest/features/AnyEditTools_${version}.jar";
+      sha256 = "0dwwwvz8by10f5gnws1ahmg02g6v4xbaqcwc0cydvv1h52cyb40g";
     };
 
     srcPlugin = fetchurl {
-      url = "https://github.com/iloveeclipse/anyedittools/releases/download/2.7.1/de.loskutov.anyedit.AnyEditTools_${version}.jar";
-      sha256 = "03iyb6j2srq74iigmg7dk098c2svyv0ygdfql5jqr44a32n07k8q";
+      url = "https://github.com/iloveeclipse/plugins/blob/latest/plugins/de.loskutov.anyedit.AnyEditTools_${version}.jar";
+      sha256 = "1ip8dk92ka7bczw1bkbs3zkclmwr28ds5q1wrzh525wb70x8v6fi";
     };
 
     meta = with lib; {
-      homepage = "http://andrei.gmxhome.de/anyedit/";
+      homepage = "https://github.com/iloveeclipse/plugins";
       description = "Adds new tools to the context menu of text-based editors";
       sourceProvenance = with sourceTypes; [ binaryBytecode ];
       license = licenses.epl10;