forked from jan-leila/nix-config
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   fetchurl,
 | |
|   appimageTools,
 | |
| }: let
 | |
|   pname = "prostudiomasters";
 | |
|   version = "2.5.6";
 | |
|   src = fetchurl {
 | |
|     url = "https://download.prostudiomasters.com/linux/ProStudioMasters-${version}.AppImage";
 | |
|     hash = "sha256-7owOwdcucFfl+JsVj+Seau2KOz0J4P/ep7WrBSNSmbs=";
 | |
|   };
 | |
| in
 | |
|   appimageTools.wrapType2 {
 | |
|     inherit pname version src;
 | |
|   }
 |