summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/eclipse
diff options
context:
space:
mode:
authorDaniel Schaefer <git@danielschaefer.me>2019-04-22 10:24:21 +0200
committerDaniel Schaefer <git@danielschaefer.me>2019-04-22 20:46:18 +0200
commit92cccb6f833acc3f56763284d50f9b2b34f7e486 (patch)
tree019be25db0a194196b5fe9c00aa390b75f417674 /pkgs/applications/editors/eclipse
parentbac4d95aa2a92be7049dedafb8ec76606f79d8a2 (diff)
treewide: Use HTTPS for readthedocs URLs
Diffstat (limited to 'pkgs/applications/editors/eclipse')
-rw-r--r--pkgs/applications/editors/eclipse/plugins.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index 30c61d640610..b75324ee1ee6 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -320,18 +320,18 @@ rec {
version_ = "1.0.0.201604221613";
srcFeature = fetchurl {
- url = "https://www2.in.tum.de/projects/cup/eclipse/features/CupEclipsePluginFeature_${version}.jar";
+ url = "http://www2.in.tum.de/projects/cup/eclipse/features/CupEclipsePluginFeature_${version}.jar";
sha256 = "13nnsf0cqg02z3af6xg45rhcgiffsibxbx6h1zahjv7igvqgkyna";
};
srcPlugins = [
(fetchurl {
- url = "https://www2.in.tum.de/projects/cup/eclipse/plugins/CupReferencedLibraries_${version_}.jar";
+ url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/CupReferencedLibraries_${version_}.jar";
sha256 = "0kif8kivrysprva1pxzajm88gi967qf7idhb6ga2xpvsdcris91j";
})
(fetchurl {
- url = "https://www2.in.tum.de/projects/cup/eclipse/plugins/de.tum.in.www2.CupPlugin_${version}.jar";
+ url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/de.tum.in.www2.CupPlugin_${version}.jar";
sha256 = "022phbrsny3gb8npb6sxyqqxacx138q5bd7dq3gqxh3kprx5chbl";
})
];
@@ -339,7 +339,7 @@ rec {
propagatedBuildInputs = [ zest ];
meta = with stdenv.lib; {
- homepage = https://www2.cs.tum.edu/projects/cup/eclipse.php;
+ homepage = http://www2.cs.tum.edu/projects/cup/eclipse.php;
description = "IDE for developing CUP based parsers";
platforms = platforms.all;
maintainers = [ maintainers.romildo ];