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