summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/plugins.nix
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2017-02-15 20:53:37 +0100
committerRobert Helgesson <robert@rycee.net>2017-02-15 20:53:37 +0100
commit09695699027efb35f3f560725e8ef93509d5929f (patch)
tree0868ccd2513f0c53f294538f83290c0d7df46e32 /pkgs/applications/editors/eclipse/plugins.nix
parenteda8ee28301f716cf06f3c2496d5d5485edbaa29 (diff)
downloadnixpkgs-09695699027efb35f3f560725e8ef93509d5929f.tar
nixpkgs-09695699027efb35f3f560725e8ef93509d5929f.tar.gz
nixpkgs-09695699027efb35f3f560725e8ef93509d5929f.tar.bz2
nixpkgs-09695699027efb35f3f560725e8ef93509d5929f.tar.lz
nixpkgs-09695699027efb35f3f560725e8ef93509d5929f.tar.xz
nixpkgs-09695699027efb35f3f560725e8ef93509d5929f.tar.zst
nixpkgs-09695699027efb35f3f560725e8ef93509d5929f.zip
eclipse-plugin-yedit: init at 1.0.20.201509041456
Diffstat (limited to 'pkgs/applications/editors/eclipse/plugins.nix')
-rw-r--r--pkgs/applications/editors/eclipse/plugins.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index 46b81cb0a54..fddd9e4920b 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -424,6 +424,29 @@ rec {
     };
   };
 
+  yedit = buildEclipsePlugin rec {
+    name = "yedit-${version}";
+    version = "1.0.20.201509041456";
+
+    srcFeature = fetchurl {
+      url = "http://dadacoalition.org/yedit/features/org.dadacoalition.yedit.feature_${version}-RELEASE.jar";
+      sha256 = "0rps73y19gwlrdr8jjrg3rhcaaagghnmri8297inxc5q2dvg0mlk";
+    };
+
+    srcPlugin = fetchurl {
+      url = "http://dadacoalition.org/yedit/plugins/org.dadacoalition.yedit_${version}-RELEASE.jar";
+      sha256 = "1wpyw4z28ka60z36f8m71kz1giajcm26wb9bpv18sjiqwdgx9v0z";
+    };
+
+    meta = with stdenv.lib; {
+      homepage = https://github.com/oyse/yedit;
+      description = "A YAML editor plugin for Eclipse";
+      license = licenses.epl10;
+      platforms = platforms.all;
+      maintainers = [ maintainers.rycee ];
+    };
+  };
+
   zest = buildEclipseUpdateSite rec {
     name = "zest-${version}";
     version = "3.9.101";