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

bundlerApp {
  pname = "timetrap";
  gemdir = ./.;
  exes = [ "t" "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 ];
    platforms   = platforms.unix;
  };
}