timetrap: init at 1.10.0
This commit is contained in:
parent
7465bcd67a
commit
198dd9df82
2
pkgs/applications/office/timetrap/Gemfile
Normal file
2
pkgs/applications/office/timetrap/Gemfile
Normal file
@ -0,0 +1,2 @@
|
||||
source 'https://rubygems.org'
|
||||
gem 'timetrap'
|
19
pkgs/applications/office/timetrap/Gemfile.lock
Normal file
19
pkgs/applications/office/timetrap/Gemfile.lock
Normal 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
|
16
pkgs/applications/office/timetrap/default.nix
Normal file
16
pkgs/applications/office/timetrap/default.nix
Normal 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;
|
||||
};
|
||||
}
|
34
pkgs/applications/office/timetrap/gemset.nix
Normal file
34
pkgs/applications/office/timetrap/gemset.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user