1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/office/timetrap/default.nix

18 lines
412 B
Nix
Raw Normal View History

2016-05-30 04:02:41 +01:00
{ stdenv, lib, bundlerEnv, ruby }:
2018-02-22 15:13:37 +00:00
bundlerEnv rec {
name = "timetrap-${version}";
2016-05-30 04:02:41 +01:00
2018-02-22 15:13:37 +00:00
version = (import gemset).timetrap.version;
2016-05-30 04:02:41 +01:00
inherit ruby;
2017-01-17 23:27:55 +00:00
gemdir = ./.;
2018-02-22 15:13:37 +00:00
gemset = ./gemset.nix;
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";
2016-05-30 04:02:41 +01:00
homepage = https://github.com/samg/timetrap;
2018-02-22 15:13:37 +00:00
license = licenses.mit;
maintainers = [ maintainers.jerith666 ];
2016-05-30 04:02:41 +01:00
};
}