tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
travis: init at 1.8.2
zimbatm.tngl.sh
10 years ago
dd0994e9
a0442016
+231
5 changed files
expand all
collapse all
unified
split
pkgs
development
tools
misc
travis
Gemfile
Gemfile.lock
default.nix
gemset.nix
top-level
all-packages.nix
+3
pkgs/development/tools/misc/travis/Gemfile
reviewed
···
1
1
+
source "https://rubygems.org"
2
2
+
3
3
+
gem "travis"
+51
pkgs/development/tools/misc/travis/Gemfile.lock
reviewed
···
1
1
+
GEM
2
2
+
remote: https://rubygems.org/
3
3
+
specs:
4
4
+
addressable (2.4.0)
5
5
+
backports (3.6.8)
6
6
+
ethon (0.8.1)
7
7
+
ffi (>= 1.3.0)
8
8
+
faraday (0.9.2)
9
9
+
multipart-post (>= 1.2, < 3)
10
10
+
faraday_middleware (0.10.0)
11
11
+
faraday (>= 0.7.4, < 0.10)
12
12
+
ffi (1.9.10)
13
13
+
gh (0.14.0)
14
14
+
addressable
15
15
+
backports
16
16
+
faraday (~> 0.8)
17
17
+
multi_json (~> 1.0)
18
18
+
net-http-persistent (>= 2.7)
19
19
+
net-http-pipeline
20
20
+
highline (1.7.8)
21
21
+
json (1.8.3)
22
22
+
launchy (2.4.3)
23
23
+
addressable (~> 2.3)
24
24
+
multi_json (1.11.2)
25
25
+
multipart-post (2.0.0)
26
26
+
net-http-persistent (2.9.4)
27
27
+
net-http-pipeline (1.0.1)
28
28
+
pusher-client (0.6.2)
29
29
+
json
30
30
+
websocket (~> 1.0)
31
31
+
travis (1.8.2)
32
32
+
backports
33
33
+
faraday (~> 0.9)
34
34
+
faraday_middleware (~> 0.9, >= 0.9.1)
35
35
+
gh (~> 0.13)
36
36
+
highline (~> 1.6)
37
37
+
launchy (~> 2.1)
38
38
+
pusher-client (~> 0.4)
39
39
+
typhoeus (~> 0.6, >= 0.6.8)
40
40
+
typhoeus (0.8.0)
41
41
+
ethon (>= 0.8.0)
42
42
+
websocket (1.2.2)
43
43
+
44
44
+
PLATFORMS
45
45
+
ruby
46
46
+
47
47
+
DEPENDENCIES
48
48
+
travis
49
49
+
50
50
+
BUNDLED WITH
51
51
+
1.11.2
+29
pkgs/development/tools/misc/travis/default.nix
reviewed
···
1
1
+
{ stdenv, lib, bundlerEnv, ruby }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "travis-${version}";
5
5
+
version = env.gems.travis.version;
6
6
+
7
7
+
env = bundlerEnv {
8
8
+
inherit ruby;
9
9
+
name = "${name}-gems";
10
10
+
gemset = ./gemset.nix;
11
11
+
gemfile = ./Gemfile;
12
12
+
lockfile = ./Gemfile.lock;
13
13
+
};
14
14
+
15
15
+
phases = ["installPhase"];
16
16
+
17
17
+
installPhase = ''
18
18
+
mkdir -p $out/bin
19
19
+
ln -s ${env}/bin/travis $out/bin/travis
20
20
+
'';
21
21
+
22
22
+
meta = with lib; {
23
23
+
description = "CLI and Ruby client library for Travis CI";
24
24
+
homepage = https://github.com/travis-ci/travis.rb;
25
25
+
license = licenses.mit;
26
26
+
maintainers = with maintainers; [ zimbatm ];
27
27
+
platforms = ruby.meta.platforms;
28
28
+
};
29
29
+
}
+146
pkgs/development/tools/misc/travis/gemset.nix
reviewed
···
1
1
+
{
2
2
+
addressable = {
3
3
+
source = {
4
4
+
remotes = ["https://rubygems.org"];
5
5
+
sha256 = "0mpn7sbjl477h56gmxsjqb89r5s3w7vx5af994ssgc3iamvgzgvs";
6
6
+
type = "gem";
7
7
+
};
8
8
+
version = "2.4.0";
9
9
+
};
10
10
+
backports = {
11
11
+
source = {
12
12
+
remotes = ["https://rubygems.org"];
13
13
+
sha256 = "1zcgqw7m7jb8n7b2jwla5cq0nw9wsgddxfmn0a9v89ihzd4i1a5k";
14
14
+
type = "gem";
15
15
+
};
16
16
+
version = "3.6.8";
17
17
+
};
18
18
+
ethon = {
19
19
+
source = {
20
20
+
remotes = ["https://rubygems.org"];
21
21
+
sha256 = "0afvvv4sxs330jhk4xz9kj6qgj70yvd4zsjnb9yvxhmaq49k8yij";
22
22
+
type = "gem";
23
23
+
};
24
24
+
version = "0.8.1";
25
25
+
};
26
26
+
faraday = {
27
27
+
source = {
28
28
+
remotes = ["https://rubygems.org"];
29
29
+
sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6";
30
30
+
type = "gem";
31
31
+
};
32
32
+
version = "0.9.2";
33
33
+
};
34
34
+
faraday_middleware = {
35
35
+
source = {
36
36
+
remotes = ["https://rubygems.org"];
37
37
+
sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h";
38
38
+
type = "gem";
39
39
+
};
40
40
+
version = "0.10.0";
41
41
+
};
42
42
+
ffi = {
43
43
+
source = {
44
44
+
remotes = ["https://rubygems.org"];
45
45
+
sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj";
46
46
+
type = "gem";
47
47
+
};
48
48
+
version = "1.9.10";
49
49
+
};
50
50
+
gh = {
51
51
+
source = {
52
52
+
remotes = ["https://rubygems.org"];
53
53
+
sha256 = "0j7m6jmxzkxvnqgnhmci33a89qpaxxcrm55kk5vz4bcpply04hx2";
54
54
+
type = "gem";
55
55
+
};
56
56
+
version = "0.14.0";
57
57
+
};
58
58
+
highline = {
59
59
+
source = {
60
60
+
remotes = ["https://rubygems.org"];
61
61
+
sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr";
62
62
+
type = "gem";
63
63
+
};
64
64
+
version = "1.7.8";
65
65
+
};
66
66
+
json = {
67
67
+
source = {
68
68
+
remotes = ["https://rubygems.org"];
69
69
+
sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc";
70
70
+
type = "gem";
71
71
+
};
72
72
+
version = "1.8.3";
73
73
+
};
74
74
+
launchy = {
75
75
+
source = {
76
76
+
remotes = ["https://rubygems.org"];
77
77
+
sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2";
78
78
+
type = "gem";
79
79
+
};
80
80
+
version = "2.4.3";
81
81
+
};
82
82
+
multi_json = {
83
83
+
source = {
84
84
+
remotes = ["https://rubygems.org"];
85
85
+
sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r";
86
86
+
type = "gem";
87
87
+
};
88
88
+
version = "1.11.2";
89
89
+
};
90
90
+
multipart-post = {
91
91
+
source = {
92
92
+
remotes = ["https://rubygems.org"];
93
93
+
sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x";
94
94
+
type = "gem";
95
95
+
};
96
96
+
version = "2.0.0";
97
97
+
};
98
98
+
net-http-persistent = {
99
99
+
source = {
100
100
+
remotes = ["https://rubygems.org"];
101
101
+
sha256 = "1y9fhaax0d9kkslyiqi1zys6cvpaqx9a0y0cywp24rpygwh4s9r4";
102
102
+
type = "gem";
103
103
+
};
104
104
+
version = "2.9.4";
105
105
+
};
106
106
+
net-http-pipeline = {
107
107
+
source = {
108
108
+
remotes = ["https://rubygems.org"];
109
109
+
sha256 = "0bxjy33yhxwsbnld8xj3zv64ibgfjn9rjpiqkyd5ipmz50pww8v9";
110
110
+
type = "gem";
111
111
+
};
112
112
+
version = "1.0.1";
113
113
+
};
114
114
+
pusher-client = {
115
115
+
source = {
116
116
+
remotes = ["https://rubygems.org"];
117
117
+
sha256 = "18ymxz34gmg7jff3h0nyzp5vdg5i06dbdxlrdl2nq4hf14qwj1f4";
118
118
+
type = "gem";
119
119
+
};
120
120
+
version = "0.6.2";
121
121
+
};
122
122
+
travis = {
123
123
+
source = {
124
124
+
remotes = ["https://rubygems.org"];
125
125
+
sha256 = "0ph83whzw5hjkp1kgbkjd2g0vi6kdr9sif6vxvxgjf186id43q0s";
126
126
+
type = "gem";
127
127
+
};
128
128
+
version = "1.8.2";
129
129
+
};
130
130
+
typhoeus = {
131
131
+
source = {
132
132
+
remotes = ["https://rubygems.org"];
133
133
+
sha256 = "03x3fxjsnhgayl4s96h0a9975awlvx2v9nmx2ba0cnliglyczdr8";
134
134
+
type = "gem";
135
135
+
};
136
136
+
version = "0.8.0";
137
137
+
};
138
138
+
websocket = {
139
139
+
source = {
140
140
+
remotes = ["https://rubygems.org"];
141
141
+
sha256 = "1frcsgj4f984db920xwapflqwgrwncw86c1rv94pp5gs2q1iaap4";
142
142
+
type = "gem";
143
143
+
};
144
144
+
version = "1.2.2";
145
145
+
};
146
146
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
6248
6248
6249
6249
texi2html = callPackage ../development/tools/misc/texi2html { };
6250
6250
6251
6251
+
travis = callPackage ../development/tools/misc/travis { };
6252
6252
+
6251
6253
tweak = callPackage ../applications/editors/tweak { };
6252
6254
6253
6255
uhd = callPackage ../development/tools/misc/uhd { };