1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 01:46:30 +00:00
nixpkgs/pkgs/applications/office/timetrap/default.nix

16 lines
380 B
Nix
Raw Normal View History

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