2019-07-22 13:02:47 +01:00
|
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript
|
2018-08-02 14:24:23 +01:00
|
|
|
|
}:
|
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
|
bundlerEnv {
|
2018-08-02 14:24:23 +01:00
|
|
|
|
pname = "doing";
|
|
|
|
|
version = (import ./gemset.nix).doing.version;
|
|
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
|
passthru.updateScript = bundlerUpdateScript "doing";
|
|
|
|
|
|
2018-08-02 14:24:23 +01:00
|
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
|
description = "A command line tool for keeping track of what you’re doing and tracking what you’ve done";
|
2018-08-02 14:24:23 +01: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.
|
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://brettterpstra.com/projects/doing/";
|
2018-08-02 14:24:23 +01:00
|
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
|
maintainers = with maintainers; [ ktf nicknovitski ];
|
2018-08-02 14:24:23 +01:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
};
|
|
|
|
|
}
|