at 23.11-beta 25 lines 784 B view raw
1{ lib, bundlerEnv, ruby, bundlerUpdateScript 2}: 3 4bundlerEnv { 5 pname = "doing"; 6 version = (import ./gemset.nix).doing.version; 7 8 inherit ruby; 9 gemdir = ./.; 10 11 passthru.updateScript = bundlerUpdateScript "doing"; 12 13 meta = with lib; { 14 description = "A command line tool for keeping track of what youre doing and tracking what youve done"; 15 longDescription = '' 16 doing is a basic CLI for adding and listing "what was I doing" reminders 17 in a TaskPaper-formatted text file. It allows for multiple 18 sections/categories and flexible output formatting. 19 ''; 20 homepage = "https://brettterpstra.com/projects/doing/"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ ktf nicknovitski ]; 23 platforms = platforms.unix; 24 }; 25}