mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
14 lines
282 B
Nix
14 lines
282 B
Nix
{ 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;
|
|
};
|
|
}
|