Unverified Commit d6f48748 authored by Anton Mosich's avatar Anton Mosich
Browse files

doing: modernize

parent ca8b67ee
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
{
  lib,
  bundlerEnv,
  ruby,
  bundlerApp,
  bundlerUpdateScript,
}:

bundlerEnv {
bundlerApp {
  pname = "doing";
  version = (import ./gemset.nix).doing.version;
  exes = lib.singleton "doing";

  inherit ruby;
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "doing";

  meta = with lib; {
  meta = {
    description = "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
@@ -22,12 +20,12 @@ bundlerEnv {
      sections/categories and flexible output formatting.
    '';
    homepage = "https://brettterpstra.com/projects/doing/";
    license = licenses.mit;
    maintainers = with maintainers; [
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      ktf
      nicknovitski
    ];
    platforms = platforms.unix;
    platforms = lib.platforms.unix;
    mainProgram = "doing";
  };
}