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

26 lines
784 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{ lib, bundlerEnv, ruby, bundlerUpdateScript
}:
bundlerEnv {
pname = "doing";
version = (import ./gemset.nix).doing.version;
inherit ruby;
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "doing";
meta = with lib; {
description = "A command line tool for keeping track of what youre doing and tracking what youve 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.
'';
homepage = "https://brettterpstra.com/projects/doing/";
license = licenses.mit;
maintainers = with maintainers; [ ktf nicknovitski ];
platforms = platforms.unix;
};
}