croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / by-name / do / doing / package.nix
blob5136966d40c43121290741b783904eef56da14c6
2   lib,
3   bundlerEnv,
4   ruby,
5   bundlerUpdateScript,
6 }:
8 bundlerEnv {
9   pname = "doing";
10   version = (import ./gemset.nix).doing.version;
12   inherit ruby;
13   gemdir = ./.;
15   passthru.updateScript = bundlerUpdateScript "doing";
17   meta = with lib; {
18     description = "Command line tool for keeping track of what you’re doing and tracking what you’ve done";
19     longDescription = ''
20       doing is a basic CLI for adding and listing "what was I doing" reminders
21       in a TaskPaper-formatted text file. It allows for multiple
22       sections/categories and flexible output formatting.
23     '';
24     homepage = "https://brettterpstra.com/projects/doing/";
25     license = licenses.mit;
26     maintainers = with maintainers; [
27       ktf
28       nicknovitski
29     ];
30     platforms = platforms.unix;
31     mainProgram = "doing";
32   };