nixpkgs/pkgs/applications/misc/doing/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
811 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby, bundlerUpdateScript
2018-08-02 13:24:23 +00:00
}:
2019-08-13 21:52:01 +00:00
bundlerEnv {
2018-08-02 13:24:23 +00:00
pname = "doing";
version = (import ./gemset.nix).doing.version;
inherit ruby;
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "doing";
2018-08-02 13:24:23 +00:00
meta = with lib; {
description = "A command line tool for keeping track of what youre doing and tracking what youve done";
2018-08-02 13:24:23 +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/";
2018-08-02 13:24:23 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ktf nicknovitski ];
2018-08-02 13:24:23 +00:00
platforms = platforms.unix;
2024-02-11 02:19:15 +00:00
mainProgram = "doing";
2018-08-02 13:24:23 +00:00
};
}