about summary refs log tree commit diff
path: root/pkgs/applications/office/timetrap/default.nix
blob: e68c753750f5826836425e46fa3ca684ed62603c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, lib, bundlerEnv, ruby }:

bundlerEnv {
  name = "timetrap-1.10.0";

  inherit ruby;
  gemdir = ./.;

  meta = {
    description = "A simple command line time tracker written in ruby";
    homepage = https://github.com/samg/timetrap;
    license = lib.licenses.mit;
  };
}