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

18 lines
475 B
Nix
Raw Permalink Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2016-05-30 03:02:41 +00:00
2019-04-30 16:55:17 +00:00
bundlerApp {
pname = "timetrap";
2017-01-17 23:27:55 +00:00
gemdir = ./.;
exes = [ "t" "timetrap" ];
2016-05-30 03:02:41 +00:00
passthru.updateScript = bundlerUpdateScript "timetrap";
2018-02-22 15:13:37 +00:00
meta = with lib; {
description = "A simple command line time tracker written in ruby";
homepage = "https://github.com/samg/timetrap";
2019-04-30 16:55:17 +00:00
license = licenses.mit;
maintainers = with maintainers; [ jerith666 manveru nicknovitski ];
2019-04-30 16:55:17 +00:00
platforms = platforms.unix;
2016-05-30 03:02:41 +00:00
};
}