about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2014-11-04 21:16:59 +0100
committerEdward Tjörnhammar <ed@cflags.cc>2014-11-04 21:22:42 +0100
commit6c1ebab0a01f06ae4a1d74ba61741ff9c80a2d50 (patch)
tree80109c42e0bf2a17ad7cbdc367913e5ca381bb5b /pkgs/applications/editors
parenta7d3aed056da45aa9ca9d7fdaf1da4be24bc7a0e (diff)
downloadnixlib-6c1ebab0a01f06ae4a1d74ba61741ff9c80a2d50.tar
nixlib-6c1ebab0a01f06ae4a1d74ba61741ff9c80a2d50.tar.gz
nixlib-6c1ebab0a01f06ae4a1d74ba61741ff9c80a2d50.tar.bz2
nixlib-6c1ebab0a01f06ae4a1d74ba61741ff9c80a2d50.tar.lz
nixlib-6c1ebab0a01f06ae4a1d74ba61741ff9c80a2d50.tar.xz
nixlib-6c1ebab0a01f06ae4a1d74ba61741ff9c80a2d50.tar.zst
nixlib-6c1ebab0a01f06ae4a1d74ba61741ff9c80a2d50.zip
idea.ruby-mine: added 6.3.3
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/idea/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix
index fd2044bec42d..7c81f3c5c81a 100644
--- a/pkgs/applications/editors/idea/default.nix
+++ b/pkgs/applications/editors/idea/default.nix
@@ -144,6 +144,19 @@ let
       };
     });
 
+  buildRubyMine = { name, version, build, src, license, description }:
+    (mkIdeaProduct rec {
+      inherit name version build src;
+      product = "RubyMine";
+      meta = with stdenv.lib; {
+        homepage = "https://www.jetbrains.com/ruby/";
+        inherit description license;
+        longDescription = description;
+        maintainers = with maintainers; [ edwtjo ];
+        platforms = platforms.linux;
+      };
+    });
+
   buildPhpStorm = { name, version, build, src, license, description }:
     (mkIdeaProduct {
       inherit name version build src;
@@ -242,6 +255,18 @@ in
     };
   };
 
+  ruby-mine = buildRubyMine rec {
+    name = "ruby-mine-${version}";
+    version = "6.3.3";
+    build = "135.1104";
+    description = "The Most Intelligent Ruby and Rails IDE";
+    license = stdenv.lib.licenses.unfree;
+    src = fetchurl {
+      url = "http://download.jetbrains.com/ruby/RubyMine-${version}.tar.gz";
+      sha256 = "58d555c2702a93fe62f3809a5cc34e566ecce0c3f1f15daaf87744402157dfac";
+    };
+  };
+
   pycharm-community = buildPycharm rec {
     name = "pycharm-community-${version}";
     version = "3.4.1";