summary refs log tree commit diff
path: root/pkgs/applications/editors/jetbrains
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-06-01 17:58:05 +0100
committerGitHub <noreply@github.com>2020-06-01 17:58:05 +0100
commit59aacec6645ee07e3e61999d1a9f80c61659409c (patch)
treee796f3eb714dd338fb7cf3df95a876df66ec0dff /pkgs/applications/editors/jetbrains
parent1ea45645e544a0765eb2285de3ad69e80892f253 (diff)
parentcc1fcec27829ba02495c95a010a65231c6ec48ab (diff)
downloadnixpkgs-59aacec6645ee07e3e61999d1a9f80c61659409c.tar
nixpkgs-59aacec6645ee07e3e61999d1a9f80c61659409c.tar.gz
nixpkgs-59aacec6645ee07e3e61999d1a9f80c61659409c.tar.bz2
nixpkgs-59aacec6645ee07e3e61999d1a9f80c61659409c.tar.lz
nixpkgs-59aacec6645ee07e3e61999d1a9f80c61659409c.tar.xz
nixpkgs-59aacec6645ee07e3e61999d1a9f80c61659409c.tar.zst
nixpkgs-59aacec6645ee07e3e61999d1a9f80c61659409c.zip
Merge pull request #66824 from rasendubi/jetbrains-mps-2019.1.5
Diffstat (limited to 'pkgs/applications/editors/jetbrains')
-rw-r--r--pkgs/applications/editors/jetbrains/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix
index 2319e0560de..1d3904ae5a1 100644
--- a/pkgs/applications/editors/jetbrains/default.nix
+++ b/pkgs/applications/editors/jetbrains/default.nix
@@ -138,6 +138,24 @@ let
       };
     });
 
+  buildMps = { name, version, src, license, description, wmClass, ... }:
+    (mkJetBrainsProduct rec {
+      inherit name version src wmClass jdk;
+      product = "MPS";
+      meta = with stdenv.lib; {
+        homepage = https://www.jetbrains.com/mps/;
+        inherit license description;
+        longDescription = ''
+          A metaprogramming system which uses projectional editing
+          which allows users to overcome the limits of language
+          parsers, and build DSL editors, such as ones with tables and
+          diagrams.
+        '';
+        maintainers = with maintainers; [ rasendubi ];
+        platforms = platforms.linux;
+      };
+    });
+
   buildPhpStorm = { name, version, src, license, description, wmClass, ... }:
     (mkJetBrainsProduct {
       inherit name version src wmClass jdk;
@@ -313,6 +331,19 @@ in
     update-channel = "IntelliJ IDEA RELEASE";
   };
 
+  mps = buildMps rec {
+    name = "mps-${version}";
+    version = "2019.2";
+    description = "Create your own domain-specific language";
+    license = stdenv.lib.licenses.unfree;
+    src = fetchurl {
+      url = "https://download.jetbrains.com/mps/2019.2/MPS-${version}.tar.gz";
+      sha256 = "0rph3bibj74ddbyrn0az1npn4san4g1alci8nlq4gaqdlcz6zx22";
+    };
+    wmClass = "jetbrains-mps";
+    update-channel = "MPS RELEASE";
+  };
+
   phpstorm = buildPhpStorm rec {
     name = "phpstorm-${version}";
     version = "2020.1.1"; /* updated by script */