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