This reverts commit d851231ee9.
The change went ahead too early and the actual plugin generation system
is not complete.
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			519 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			519 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, stdenv, fetchzip }:
 | |
| 
 | |
| self:
 | |
| 
 | |
| let
 | |
| 
 | |
|   ideaBuild = import ../../../build-support/jetbrains/plugin.nix {
 | |
|     inherit lib stdenv fetchzip;
 | |
|     jetbrainsPlatforms = [ "idea-community" "idea-ultimate" ];
 | |
|   };
 | |
| 
 | |
|   generateIdea = lib.makeOverridable ({
 | |
|     idea ? ./manual-idea-packages.nix
 | |
|   }: let
 | |
| 
 | |
|     imported = import idea {
 | |
|       inherit (self) callPackage;
 | |
|     };
 | |
| 
 | |
|     super = imported;
 | |
| 
 | |
|     overrides = { };
 | |
| 
 | |
|     ideaPlugins = super // overrides;
 | |
| 
 | |
|   in ideaPlugins // { inherit ideaBuild; });
 | |
| 
 | |
| in generateIdea { }
 | |
| 
 |