nixpkgs/pkgs/applications/office/timetrap/default.nix

15 lines
282 B
Nix
Raw Normal View History

2016-05-30 03:02:41 +00: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 03:02:41 +00:00
meta = {
description = "A simple command line time tracker written in ruby";
2016-05-30 03:02:41 +00:00
homepage = https://github.com/samg/timetrap;
license = lib.licenses.mit;
};
}