2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
|
pname = "doing";
|
|
|
|
|
version = (import ./gemset.nix).doing.version;
|
|
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "doing";
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-10-19 00:13:06 +00:00
|
|
|
|
description = "A command line tool for keeping track of what you’re doing and tracking what you’ve done";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
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;
|
2024-02-29 20:09:43 +00:00
|
|
|
|
mainProgram = "doing";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|