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

  
            





                                                

                                                      
                    
                                                                                                                 




                                                                              
                                                              
                               
                                                         


                                 
{ lib, bundlerEnv, ruby, bundlerUpdateScript
}:

bundlerEnv {
  pname = "doing";
  version = (import ./gemset.nix).doing.version;

  inherit ruby;
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "doing";

  meta = with lib; {
    description = "A command line tool for keeping track of what you’re doing and tracking what you’ve done";
    longDescription = ''
      doing is a basic CLI for adding and listing "what was I doing" reminders
      in a TaskPaper-formatted text file. It allows for multiple
      sections/categories and flexible output formatting.
    '';
    homepage    = "https://brettterpstra.com/projects/doing/";
    license     = licenses.mit;
    maintainers = with maintainers; [ ktf nicknovitski ];
    platforms   = platforms.unix;
  };
}