xeals
8548791f31
This reverts commit d851231ee9
.
The change went ahead too early and the actual plugin generation system
is not complete.
42 lines
726 B
Nix
42 lines
726 B
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
self:
|
|
|
|
let
|
|
|
|
commonBuild = import ../../../build-support/jetbrains/plugin.nix {
|
|
inherit lib stdenv fetchzip;
|
|
jetbrainsPlatforms = [
|
|
"clion"
|
|
"datagrip"
|
|
"goland"
|
|
"idea-community"
|
|
"idea-ultimate"
|
|
"phpstorm"
|
|
"pycharm-community"
|
|
"pycharm-professional"
|
|
"rider"
|
|
"ruby-mine"
|
|
"webstorm"
|
|
];
|
|
};
|
|
|
|
generateCommon = lib.makeOverridable ({
|
|
common ? ./manual-common-packages.nix
|
|
}: let
|
|
|
|
imported = import common {
|
|
inherit (self) callPackage;
|
|
};
|
|
|
|
super = imported;
|
|
|
|
overrides = { };
|
|
|
|
jetbrainsPlugins = super // overrides;
|
|
|
|
in jetbrainsPlugins // { inherit commonBuild; });
|
|
|
|
in generateCommon { }
|
|
|