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

                      
                    
 
                         

                        
                  
                                                                   

    

                      
                    
                                                                    
                                      



                                                 
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "ultralist";
  version = "1.7.0";

  src = fetchFromGitHub {
    owner = "ultralist";
    repo = "ultralist";
    rev = version;
    sha256 = "sha256-GGBW6rpwv1bVbLTD//cU8jNbq/27Ls0su7DymCJTSmY=";
  };

  vendorSha256 = null;

  meta = with lib; {
    description = "Simple GTD-style todo list for the command line";
    homepage = "https://ultralist.io";
    license = licenses.mit;
    maintainers = with maintainers; [ uvnikita ];
  };
}