summary refs log blame commit diff
path: root/pkgs/tools/misc/docui/default.nix
blob: 122bc20279ba152681bb0a741b1f3ac8b85eeb02 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                

                   
                  
                    




                         
                                                                 

    
                                                                     
 
                    
                                          
                                                    
                           
                                                
                             
    
 
{ lib, stdenv, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "docui";
  version = "2.0.4";

  src = fetchFromGitHub {
    owner = "skanehira";
    repo = "docui";
    rev = version;
    hash = "sha256-tHv1caNGiWC9Dc/qR4ij9xGM1lotT0KyrpJpdBsHyks=";
  };

  vendorHash = "sha256-5xQ5MmGpyzVh4gXZAhCY16iVw8zbCMzMA5IOsPdn7b0=";

  meta = with lib; {
    description = "TUI Client for Docker";
    homepage = "https://github.com/skanehira/docui";
    license = licenses.mit;
    maintainers = with maintainers; [ aethelz ];
    broken = stdenv.isDarwin;
  };
}