2018-08-02 13:24:23 +00:00
|
|
|
|
{ lib, bundlerEnv, ruby
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
# Bundix:
|
|
|
|
|
# nix-shell -p bundix zlib
|
|
|
|
|
bundlerEnv rec {
|
|
|
|
|
pname = "doing";
|
|
|
|
|
version = (import ./gemset.nix).doing.version;
|
|
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
'';
|
2019-04-22 08:14:28 +00:00
|
|
|
|
homepage = https://brettterpstra.com/projects/doing/;
|
2018-08-02 13:24:23 +00:00
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ ktf ];
|
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
};
|
|
|
|
|
}
|