2019-04-30 09:55:17 -07:00
|
|
|
{ lib, bundlerApp }:
|
2016-05-29 20:02:41 -07:00
|
|
|
|
2019-04-30 09:55:17 -07:00
|
|
|
bundlerApp {
|
|
|
|
pname = "timetrap";
|
2017-01-17 15:27:55 -08:00
|
|
|
gemdir = ./.;
|
2019-05-23 06:18:01 -07:00
|
|
|
exes = [ "t" "timetrap" ];
|
2016-05-29 20:02:41 -07:00
|
|
|
|
2018-02-22 07:13:37 -08:00
|
|
|
meta = with lib; {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A simple command line time tracker written in ruby";
|
2019-04-30 09:55:17 -07:00
|
|
|
homepage = https://github.com/samg/timetrap;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jerith666 manveru ];
|
|
|
|
platforms = platforms.unix;
|
2016-05-29 20:02:41 -07:00
|
|
|
};
|
|
|
|
}
|