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

15 lines
282 B
Nix
Raw Normal View History

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 = {
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;
};
}