mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-11-01 02:57:02 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			260 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			260 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { inputs, ... }:
 | |
| {
 | |
|   imports = [
 | |
|     inputs.rust-flake.flakeModules.default
 | |
|     inputs.rust-flake.flakeModules.nixpkgs
 | |
|   ];
 | |
|   perSystem = { pkgs, ... }: {
 | |
|     rust-project.toolchain = pkgs.rust-bin.fromRustupToolchain {
 | |
|       channel = "1.88.0";
 | |
|     };
 | |
|   };
 | |
| }
 | 
