summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/plugins.nix
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2015-09-15 20:55:11 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-09-15 22:13:14 +0200
commitd243a5d0c9380c4be4a4a0b66b9ee9a99cd4e284 (patch)
treee16107a662a5927eed3f669d7e402d2c849ad914 /pkgs/applications/editors/eclipse/plugins.nix
parent83df5ae07baf7510ed12c52f28dad1d988ade4fb (diff)
downloadnixpkgs-d243a5d0c9380c4be4a4a0b66b9ee9a99cd4e284.tar
nixpkgs-d243a5d0c9380c4be4a4a0b66b9ee9a99cd4e284.tar.gz
nixpkgs-d243a5d0c9380c4be4a4a0b66b9ee9a99cd4e284.tar.bz2
nixpkgs-d243a5d0c9380c4be4a4a0b66b9ee9a99cd4e284.tar.lz
nixpkgs-d243a5d0c9380c4be4a4a0b66b9ee9a99cd4e284.tar.xz
nixpkgs-d243a5d0c9380c4be4a4a0b66b9ee9a99cd4e284.tar.zst
nixpkgs-d243a5d0c9380c4be4a4a0b66b9ee9a99cd4e284.zip
eclipse-plugin-bytecode-outline: init at 2.4.3
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 6fe9a2212e8..9d85c05206a 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -127,6 +127,29 @@ rec {
     };
   };
 
+  bytecode-outline = buildEclipsePlugin rec {
+    name = "bytecode-outline-${version}";
+    version = "2.4.3";
+
+    srcFeature = fetchurl {
+      url = "http://andrei.gmxhome.de/eclipse/features/de.loskutov.BytecodeOutline.feature_${version}.jar";
+      sha256 = "0imhwp73gxy1y5d5gpjgd05ywn0xg3vqc5980wcx3fd51g4ifc67";
+    };
+
+    srcPlugin = fetchurl {
+      url = "http://dl.bintray.com/iloveeclipse/plugins/de.loskutov.BytecodeOutline_${version}.jar";
+      sha256 = "0230i88mvvxhn11m9c5mv3494zhh1xkxyfyva9qahck0wbqwpzkw";
+    };
+
+    meta = with stdenv.lib; {
+      homepage = http://andrei.gmxhome.de/bytecode/;
+      description = "Shows disassembled bytecode of current java editor or class file";
+      license = licenses.bsd2;
+      platforms = platforms.all;
+      maintainers = [ maintainers.rycee ];
+    };
+  };
+
   cdt = buildEclipseUpdateSite rec {
     name = "cdt-${version}";
     version = "8.7.0";