1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 00:54:11 +00:00
nixpkgs/pkgs/applications/office/timetrap/default.nix

18 lines
404 B
Nix

{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = "timetrap-${version}";
version = (import gemset).timetrap.version;
inherit ruby;
gemdir = ./.;
gemset = ./gemset.nix;
meta = with lib; {
description = "A simple command line time tracker written in ruby";
homepage = https://github.com/samg/timetrap;
license = licenses.mit;
maintainers = [ maintainers.jerith666 ];
};
}