jetbrains.plugins.tests.default: init

This commit is contained in:
GenericNerdyUsername 2023-07-20 14:20:56 +01:00
parent 24833f08a0
commit ea023517b7
No known key found for this signature in database
GPG Key ID: 65BA194581245B15
2 changed files with 28 additions and 0 deletions

View File

@ -68,6 +68,8 @@ rec {
# Only use if you know what youre doing
raw = { inherit files byId byName; };
tests = callPackage ./tests.nix {};
addPlugins = ide: unprocessedPlugins:
let

View File

@ -0,0 +1,26 @@
{ jetbrains, writeText }:
{
# Check to see if the process for adding plugins is breaking anything, instead of the plugins themselves
default =
let
modify-ide = ide: jetbrains.plugins.addPlugins ide [ ];
ides = with jetbrains; map modify-ide [
clion
datagrip
dataspell
goland
idea-community
idea-ultimate
mps
phpstorm
pycharm-community
pycharm-professional
rider
ruby-mine
webstorm
];
paths = builtins.concatStringsSep " " ides;
in
writeText "jb-ides" paths;
}