18 lines
		
	
	
	
		
			405 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			405 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   pkgs,
 | |
|   lib,
 | |
| }: let
 | |
|   inherit (builtins) fromJSON mapAttrs readFile;
 | |
|   inherit (pkgs) callPackage;
 | |
| in
 | |
|   {
 | |
|     starbound = callPackage ./starbound {};
 | |
|   }
 | |
|   // (
 | |
|     # Add nextcloud apps
 | |
|     let
 | |
|       mkNextcloudApp = pkgs.callPackage ./mkNextcloudApp.nix {};
 | |
|       sources = fromJSON (readFile ./_sources_nextcloud/generated.json);
 | |
|     in
 | |
|       mapAttrs (_: source: mkNextcloudApp source) sources
 | |
|   )
 |