2016-05-29 20:02:41 -07:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
name = "timetrap-1.10.0";
|
|
|
|
|
|
|
|
inherit ruby;
|
2017-01-17 15:27:55 -08:00
|
|
|
gemdir = ./.;
|
2016-05-29 20:02:41 -07:00
|
|
|
|
|
|
|
meta = {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A simple command line time tracker written in ruby";
|
2016-05-29 20:02:41 -07:00
|
|
|
homepage = https://github.com/samg/timetrap;
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|