forked from rarias/bscpkgs
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			369 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			369 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   inputs.nixpkgs.url = "nixpkgs";
 | |
| 
 | |
|   outputs = { self, nixpkgs, ...}:
 | |
|   let
 | |
|     pkgs = import nixpkgs {
 | |
|       # For now we only support x86
 | |
|       system = "x86_64-linux";
 | |
|       overlays = [ self.overlays.default ];
 | |
|     };
 | |
|   in
 | |
|     {
 | |
|       bscOverlay = import ./overlay.nix;
 | |
|       overlays.default = self.bscOverlay;
 | |
|       legacyPackages.x86_64-linux = pkgs;
 | |
|     };
 | |
| }
 |