biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / doing / default.nix
blob2c49361c2bb4c28eb1bcb80b33dfa34594029f90
1 { lib, bundlerEnv, ruby, bundlerUpdateScript
2 }:
4 bundlerEnv {
5   pname = "doing";
6   version = (import ./gemset.nix).doing.version;
8   inherit ruby;
9   gemdir = ./.;
11   passthru.updateScript = bundlerUpdateScript "doing";
13   meta = with lib; {
14     description = "Command line tool for keeping track of what you’re doing and tracking what you’ve done";
15     longDescription = ''
16       doing is a basic CLI for adding and listing "what was I doing" reminders
17       in a TaskPaper-formatted text file. It allows for multiple
18       sections/categories and flexible output formatting.
19     '';
20     homepage    = "https://brettterpstra.com/projects/doing/";
21     license     = licenses.mit;
22     maintainers = with maintainers; [ ktf nicknovitski ];
23     platforms   = platforms.unix;
24     mainProgram = "doing";
25   };