timetrap: init at 1.10.0

This commit is contained in:
Matt McHenry 2016-05-29 23:02:41 -04:00
parent 7465bcd67a
commit 198dd9df82
5 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'timetrap'

View File

@ -0,0 +1,19 @@
GEM
remote: https://rubygems.org/
specs:
chronic (0.10.2)
sequel (4.0.0)
sqlite3 (1.3.11)
timetrap (1.10.0)
chronic (~> 0.10.2)
sequel (~> 4.0.0)
sqlite3 (~> 1.3.3)
PLATFORMS
ruby
DEPENDENCIES
timetrap
BUNDLED WITH
1.10.6

View File

@ -0,0 +1,16 @@
{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv {
name = "timetrap-1.10.0";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = {
description = "a simple command line time tracker written in ruby";
homepage = https://github.com/samg/timetrap;
license = lib.licenses.mit;
};
}

View File

@ -0,0 +1,34 @@
{
chronic = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn";
type = "gem";
};
version = "0.10.2";
};
sequel = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "17kqm0vd15p9qxbgcysvmg6a046fd7zvxl3xzpsh00pg6v454svm";
type = "gem";
};
version = "4.0.0";
};
sqlite3 = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "19r06wglnm6479ffj9dl0fa4p5j2wi6dj7k6k3d0rbx7036cv3ny";
type = "gem";
};
version = "1.3.11";
};
timetrap = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "1rdaa27zvdgmbsbwa59g3dvfwb95nz7x1wycmviby94j5lywyzfc";
type = "gem";
};
version = "1.10.0";
};
}

View File

@ -3410,6 +3410,8 @@ in
timemachine = callPackage ../applications/audio/timemachine { };
timetrap = callPackage ../applications/office/timetrap { };
tinc = callPackage ../tools/networking/tinc { };
tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };