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