tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
timetrap: init at 1.10.0
Matt McHenry
9 years ago
198dd9df
7465bcd6
+73
5 changed files
expand all
collapse all
unified
split
pkgs
applications
office
timetrap
Gemfile
Gemfile.lock
default.nix
gemset.nix
top-level
all-packages.nix
+2
pkgs/applications/office/timetrap/Gemfile
···
0
0
···
1
+
source 'https://rubygems.org'
2
+
gem 'timetrap'
+19
pkgs/applications/office/timetrap/Gemfile.lock
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
GEM
2
+
remote: https://rubygems.org/
3
+
specs:
4
+
chronic (0.10.2)
5
+
sequel (4.0.0)
6
+
sqlite3 (1.3.11)
7
+
timetrap (1.10.0)
8
+
chronic (~> 0.10.2)
9
+
sequel (~> 4.0.0)
10
+
sqlite3 (~> 1.3.3)
11
+
12
+
PLATFORMS
13
+
ruby
14
+
15
+
DEPENDENCIES
16
+
timetrap
17
+
18
+
BUNDLED WITH
19
+
1.10.6
+16
pkgs/applications/office/timetrap/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, lib, bundlerEnv, ruby }:
2
+
3
+
bundlerEnv {
4
+
name = "timetrap-1.10.0";
5
+
6
+
inherit ruby;
7
+
gemfile = ./Gemfile;
8
+
lockfile = ./Gemfile.lock;
9
+
gemset = ./gemset.nix;
10
+
11
+
meta = {
12
+
description = "a simple command line time tracker written in ruby";
13
+
homepage = https://github.com/samg/timetrap;
14
+
license = lib.licenses.mit;
15
+
};
16
+
}
+34
pkgs/applications/office/timetrap/gemset.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{
2
+
chronic = {
3
+
source = {
4
+
remotes = ["https://rubygems.org"];
5
+
sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn";
6
+
type = "gem";
7
+
};
8
+
version = "0.10.2";
9
+
};
10
+
sequel = {
11
+
source = {
12
+
remotes = ["https://rubygems.org"];
13
+
sha256 = "17kqm0vd15p9qxbgcysvmg6a046fd7zvxl3xzpsh00pg6v454svm";
14
+
type = "gem";
15
+
};
16
+
version = "4.0.0";
17
+
};
18
+
sqlite3 = {
19
+
source = {
20
+
remotes = ["https://rubygems.org"];
21
+
sha256 = "19r06wglnm6479ffj9dl0fa4p5j2wi6dj7k6k3d0rbx7036cv3ny";
22
+
type = "gem";
23
+
};
24
+
version = "1.3.11";
25
+
};
26
+
timetrap = {
27
+
source = {
28
+
remotes = ["https://rubygems.org"];
29
+
sha256 = "1rdaa27zvdgmbsbwa59g3dvfwb95nz7x1wycmviby94j5lywyzfc";
30
+
type = "gem";
31
+
};
32
+
version = "1.10.0";
33
+
};
34
+
}
+2
pkgs/top-level/all-packages.nix
···
3410
3411
timemachine = callPackage ../applications/audio/timemachine { };
3412
0
0
3413
tinc = callPackage ../tools/networking/tinc { };
3414
3415
tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };
···
3410
3411
timemachine = callPackage ../applications/audio/timemachine { };
3412
3413
+
timetrap = callPackage ../applications/office/timetrap { };
3414
+
3415
tinc = callPackage ../tools/networking/tinc { };
3416
3417
tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };