mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-10-31 02:27:11 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			575 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			575 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {pkgs ? import <nixpkgs> {}}:
 | |
| pkgs.mkShell {
 | |
|   name = "kyoo";
 | |
|   inputsFrom = [
 | |
|     (import ./api/shell.nix {inherit pkgs;})
 | |
|     (import ./auth/shell.nix {inherit pkgs;})
 | |
|     (import ./back/shell.nix {inherit pkgs;})
 | |
|     (import ./chart/shell.nix {inherit pkgs;})
 | |
|     (import ./front/shell.nix {inherit pkgs;})
 | |
|     (import ./scanner/shell.nix {inherit pkgs;})
 | |
|     (import ./transcoder/shell.nix {inherit pkgs;})
 | |
|   ];
 | |
| 
 | |
|   # env vars aren't inherited from the `inputsFrom`
 | |
|   SHARP_FORCE_GLOBAL_LIBVIPS = 1;
 | |
|   UV_PYTHON_PREFERENCE = "only-system";
 | |
|   UV_PYTHON = pkgs.python313;
 | |
| }
 |