summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-02-25 17:51:45 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-02-26 06:42:04 -0300
commit205398c42792d89d7127a635207f38744c4e854b (patch)
treef1475cfc4220326b35d2682d68a98fbfc8815123 /pkgs/applications/editors/eclipse
parentef11f77c8f5f5b91f0a35c425554836b9ce52a2e (diff)
downloadnixlib-205398c42792d89d7127a635207f38744c4e854b.tar
nixlib-205398c42792d89d7127a635207f38744c4e854b.tar.gz
nixlib-205398c42792d89d7127a635207f38744c4e854b.tar.bz2
nixlib-205398c42792d89d7127a635207f38744c4e854b.tar.lz
nixlib-205398c42792d89d7127a635207f38744c4e854b.tar.xz
nixlib-205398c42792d89d7127a635207f38744c4e854b.tar.zst
nixlib-205398c42792d89d7127a635207f38744c4e854b.zip
eclipse-plugin-zest: init at 3.9.101
eclipse-plugins-cup: remove plugins.nix.orig that was wrongly added.
Diffstat (limited to 'pkgs/applications/editors/eclipse')
-rw-r--r--pkgs/applications/editors/eclipse/plugins.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index 40585f95013a..ee484e557786 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -396,4 +396,21 @@ rec {
     };
   };
 
+  zest = buildEclipseUpdateSite rec {
+    name = "zest-${version}";
+    version = "3.9.101";
+
+    src = fetchurl {
+      url = "http://archive.eclipse.org/tools/gef/downloads/drops/${version}/R201408150207/GEF-${name}.zip";
+      sha256 = "01scn7cmcrjcp387spjm8ifgwrwwi77ypildandbisfvhj3qqs7m";
+    };
+
+    meta = with stdenv.lib; {
+      homepage = https://www.eclipse.org/gef/zest/;
+      description = "The Eclipse Visualization Toolkit";
+      platforms = platforms.all;
+      maintainers = [ maintainers.romildo ];
+    };
+  };
+
 }