summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/plugins.nix
diff options
context:
space:
mode:
authorStuart Moss <samoss@gmail.com>2017-09-30 09:31:04 +0100
committerRobert Helgesson <robert@rycee.net>2017-10-03 00:31:17 +0200
commit796b3a230630bc6413ca07fc4d9e17fb2e63352a (patch)
tree65da5be342a0bf6500caaf736dd0fa3dc7c21e75 /pkgs/applications/editors/eclipse/plugins.nix
parent2066cb0b029cc38810ea73cc16918815884c1b31 (diff)
downloadnixpkgs-796b3a230630bc6413ca07fc4d9e17fb2e63352a.tar
nixpkgs-796b3a230630bc6413ca07fc4d9e17fb2e63352a.tar.gz
nixpkgs-796b3a230630bc6413ca07fc4d9e17fb2e63352a.tar.bz2
nixpkgs-796b3a230630bc6413ca07fc4d9e17fb2e63352a.tar.lz
nixpkgs-796b3a230630bc6413ca07fc4d9e17fb2e63352a.tar.xz
nixpkgs-796b3a230630bc6413ca07fc4d9e17fb2e63352a.tar.zst
nixpkgs-796b3a230630bc6413ca07fc4d9e17fb2e63352a.zip
eclipse-plugin-vrapper: init at 0.72.0
Diffstat (limited to 'pkgs/applications/editors/eclipse/plugins.nix')
-rw-r--r--pkgs/applications/editors/eclipse/plugins.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index a3b4193edc6..b9b0ee61c0b 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -447,6 +447,28 @@ rec {
     };
   };
 
+  vrapper = buildEclipseUpdateSite rec {
+    name = "vrapper-${version}";
+    version = "0.72.0";
+    owner = "vrapper";
+    repo = "vrapper";
+    date = "20170311";
+
+    src = fetchzip {
+      stripRoot = false;
+      url = "https://github.com/${owner}/${repo}/releases/download/${version}/vrapper_${version}_${date}.zip";
+      sha256 = "0nyirf6km97q211cxfy01kidxac20m8ba3kk9xj73ykrhsk3cxjp";
+    };
+
+    meta = with stdenv.lib; {
+      homepage = "https://github.com/vrapper/vrapper";
+      description = "A wrapper to provide a Vim-like input scheme for moving around and editing text";
+      license = licenses.gpl3;
+      platforms = platforms.all;
+      maintainers = [ maintainers.stumoss ];
+    };
+  };
+
   yedit = buildEclipsePlugin rec {
     name = "yedit-${version}";
     version = "1.0.20.201509041456";