aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/editors/jetbrains/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/jetbrains/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/jetbrains/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/jetbrains/default.nix b/nixpkgs/pkgs/applications/editors/jetbrains/default.nix
index 2319e0560de..1d3904ae5a1 100644
--- a/nixpkgs/pkgs/applications/editors/jetbrains/default.nix
+++ b/nixpkgs/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 */