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