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

                   
                  
                    




                         
                                                                    

    
                                                                        
 

                  
                    
                                          
                                                    

                                                    
                                                
    
 
{ lib, buildGoModule, fetchFromGitHub }:

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

  src = fetchFromGitHub {
    owner = "skanehira";
    repo = "docui";
    rev = version;
    sha256 = "0jya0wdp8scjmsr44krdbbb8q4gplf44gsng1nyn12a6ldqzayxl";
  };

  vendorSha256 = "1ggdczvv03lj0g6cq26vrk1rba6pk0805n85w9hkbjx9c4r3j577";

  doCheck = false;

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