about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/office/timetrap/default.nix
blob: 579c9e115be8d3719fe9ca7cad4e4d1ce07cefd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "timetrap";
  gemdir = ./.;
  exes = [ "t" "timetrap" ];

  passthru.updateScript = bundlerUpdateScript "timetrap";

  meta = with lib; {
    description = "A simple command line time tracker written in ruby";
    homepage    = "https://github.com/samg/timetrap";
    license     = licenses.mit;
    maintainers = with maintainers; [ jerith666 manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}