Use a nixos-unstable revision the channel has not yet advanced to (but
the tested jobset has succeeded already), so we'll benefit from the
polkit security update.
* //users/grfn/home/games: replace multimc with polymc.
  Seems like this is the conclusion in in the trademark saga.
* //third_party/terrform-provider-glesys: use new mkProvider interface
  See e7dbfd7ece
Change-Id: Ieb76a3d73c42ce1fa34050ac797fa4e3a905e8ef
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5075
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: grfn <grfn@gws.fyi>
		
	
			
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			580 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			580 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # GleSYS Terraform provider
 | |
| #
 | |
| # Some TVL resources (DNS, object storage, ...) are hosted with them.
 | |
| { pkgs, ... }:
 | |
| 
 | |
| pkgs.terraform-providers.mkProvider rec {
 | |
|   version = "0.3.1";
 | |
| 
 | |
|   owner = "glesys";
 | |
|   repo = "terraform-provider-glesys";
 | |
|   rev = "v${version}";
 | |
|   sha256 = "1rcwzf31gdxjywkcnlq1nxv4y8fcrc2z2xrp73q61mglv01bqq8m";
 | |
| 
 | |
|   vendorSha256 = "0g5g69absf0vmin0ff0anrxcgfq0bzx4iz3qci90p9xkvyph4nlw";
 | |
| 
 | |
|   # This provider is not officially published in the TF registry, so
 | |
|   # we're giving it a fake source here.
 | |
|   provider-source-address = "registry.terraform.io/depot/glesys";
 | |
| }
 |