nixpkgs/pkgs/applications/office/timetrap/default.nix
2019-04-30 18:55:17 +02:00

16 lines
376 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "timetrap";
gemdir = ./.;
exes = [ "timetrap" ];
meta = with lib; {
description = "A simple command line time tracker written in ruby";
homepage = https://github.com/samg/timetrap;
license = licenses.mit;
maintainers = with maintainers; [ jerith666 manveru ];
platforms = platforms.unix;
};
}