mirror of
				https://github.com/matter-labs/nixsgx.git
				synced 2025-10-29 05:04:08 +01:00 
			
		
		
		
	 3508e22b08
			
		
	
	
		3508e22b08
		
			
		
	
	
	
	
		
			
			- Replaced outdated substituter URL with a new static IP-based URL. Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			771 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			771 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   nixConfig = {
 | |
|     extra-substituters = [ "https://static.188.92.12.49.clients.your-server.de/tee-pot" ];
 | |
|     extra-trusted-public-keys = [ "tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg=" ];
 | |
|   };
 | |
| 
 | |
|   inputs = {
 | |
|     nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
 | |
| 
 | |
|     snowfall-lib = {
 | |
|       url = "github:snowfallorg/lib?ref=c6238c83de101729c5de3a29586ba166a9a65622";
 | |
|       inputs.nixpkgs.follows = "nixpkgs";
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   description = "SGX packages for nixos";
 | |
| 
 | |
|   outputs = inputs:
 | |
|     inputs.snowfall-lib.mkFlake {
 | |
|       inherit inputs;
 | |
|       src = ./.;
 | |
| 
 | |
|       package-namespace = "nixsgx";
 | |
| 
 | |
|       snowfall = {
 | |
|         namespace = "nixsgx";
 | |
|       };
 | |
| 
 | |
|       outputs-builder = channels: {
 | |
|         formatter = channels.nixpkgs.nixpkgs-fmt;
 | |
|       };
 | |
|     };
 | |
| }
 |