A small go TUI framework based on the Elm Architecture. Change-Id: I0c400a7b25af682735bfc5061db179e5d1dd75ab Reviewed-on: https://cl.tvl.fyi/c/depot/+/2853 Reviewed-by: Profpatsch <mail@profpatsch.de> Reviewed-by: lukegb <lukegb@tvl.fyi> Tested-by: BuildkiteCI
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			345 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			345 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { depot, pkgs, ... }:
 | |
| 
 | |
| depot.nix.buildGo.external {
 | |
|   path = "github.com/containerd/console";
 | |
|   src = pkgs.fetchFromGitHub {
 | |
|     owner = "containerd";
 | |
|     repo = "console";
 | |
|     rev = "v1.0.1";
 | |
|     sha256 = "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg";
 | |
|   };
 | |
| 
 | |
|   deps = with depot.third_party; [
 | |
|     gopkgs."golang.org".x.sys.unix
 | |
|   ];
 | |
| }
 |