tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
elm-github-install: init at 1.0.1
Robert Hensing
8 years ago
3d48fa72
ae953c22
+174
5 changed files
expand all
collapse all
unified
split
pkgs
tools
package-management
elm-github-install
Gemfile
Gemfile.lock
default.nix
gemset.nix
top-level
all-packages.nix
+2
pkgs/tools/package-management/elm-github-install/Gemfile
···
1
1
+
source 'https://rubygems.org'
2
2
+
gem 'elm_install'
+39
pkgs/tools/package-management/elm-github-install/Gemfile.lock
···
1
1
+
GEM
2
2
+
remote: https://rubygems.org/
3
3
+
specs:
4
4
+
adts (0.1.2)
5
5
+
commander (4.4.3)
6
6
+
highline (~> 1.7.2)
7
7
+
contracts (0.16.0)
8
8
+
elm_install (1.0.1)
9
9
+
adts (~> 0.1.2)
10
10
+
commander (~> 4.4, >= 4.4.2)
11
11
+
contracts (~> 0.16.0)
12
12
+
git (~> 1.3)
13
13
+
git_clone_url (~> 2.0)
14
14
+
hashdiff (~> 0.3.1)
15
15
+
indentation (~> 0.1.1)
16
16
+
smart_colored (~> 1.1, >= 1.1.1)
17
17
+
solve (~> 3.1)
18
18
+
git (1.3.0)
19
19
+
git_clone_url (2.0.0)
20
20
+
uri-ssh_git (>= 2.0)
21
21
+
hashdiff (0.3.4)
22
22
+
highline (1.7.8)
23
23
+
indentation (0.1.1)
24
24
+
molinillo (0.5.7)
25
25
+
semverse (2.0.0)
26
26
+
smart_colored (1.1.1)
27
27
+
solve (3.1.0)
28
28
+
molinillo (>= 0.5)
29
29
+
semverse (>= 1.1, < 3.0)
30
30
+
uri-ssh_git (2.0.0)
31
31
+
32
32
+
PLATFORMS
33
33
+
ruby
34
34
+
35
35
+
DEPENDENCIES
36
36
+
elm_install
37
37
+
38
38
+
BUNDLED WITH
39
39
+
1.14.4
+17
pkgs/tools/package-management/elm-github-install/default.nix
···
1
1
+
{ lib, bundlerEnv, ruby }:
2
2
+
3
3
+
bundlerEnv rec {
4
4
+
name = "elm-github-install-${version}";
5
5
+
6
6
+
version = (import ./gemset.nix).elm_install.version;
7
7
+
inherit ruby;
8
8
+
gemdir = ./.;
9
9
+
10
10
+
meta = with lib; {
11
11
+
description = "Install Elm packages from git repositories.";
12
12
+
homepage = https://github.com/gdotdesign/elm-github-install;
13
13
+
license = licenses.unfree;
14
14
+
maintainers = [ maintainers.roberth ];
15
15
+
platforms = platforms.all;
16
16
+
};
17
17
+
}
+114
pkgs/tools/package-management/elm-github-install/gemset.nix
···
1
1
+
{
2
2
+
adts = {
3
3
+
source = {
4
4
+
remotes = ["https://rubygems.org"];
5
5
+
sha256 = "1793bfsgg8ca58b70xas9rglnspig41ih0iwqcad62s0grxzrjwz";
6
6
+
type = "gem";
7
7
+
};
8
8
+
version = "0.1.2";
9
9
+
};
10
10
+
commander = {
11
11
+
source = {
12
12
+
remotes = ["https://rubygems.org"];
13
13
+
sha256 = "01qx76y05v29kgyjsfkai73gwfnqhypp1k8v024m9w7qzpv4mpxf";
14
14
+
type = "gem";
15
15
+
};
16
16
+
version = "4.4.3";
17
17
+
};
18
18
+
contracts = {
19
19
+
source = {
20
20
+
remotes = ["https://rubygems.org"];
21
21
+
sha256 = "119f5p1n6r5svbx8h09za6a4vrsnj5i1pzr9cqdn9hj3wrxvyl3a";
22
22
+
type = "gem";
23
23
+
};
24
24
+
version = "0.16.0";
25
25
+
};
26
26
+
elm_install = {
27
27
+
source = {
28
28
+
remotes = ["https://rubygems.org"];
29
29
+
sha256 = "0d3fwhj54madabmzamss865kj8czicgaq5fbdll9kpapqvy6a2j5";
30
30
+
type = "gem";
31
31
+
};
32
32
+
version = "1.0.1";
33
33
+
};
34
34
+
git = {
35
35
+
source = {
36
36
+
remotes = ["https://rubygems.org"];
37
37
+
sha256 = "1waikaggw7a1d24nw0sh8fd419gbf7awh000qhsf411valycj6q3";
38
38
+
type = "gem";
39
39
+
};
40
40
+
version = "1.3.0";
41
41
+
};
42
42
+
git_clone_url = {
43
43
+
source = {
44
44
+
remotes = ["https://rubygems.org"];
45
45
+
sha256 = "0qgq7pjl461si3m2gr28vwbx47dcbpyy682mcwra5y1klpkbcvr5";
46
46
+
type = "gem";
47
47
+
};
48
48
+
version = "2.0.0";
49
49
+
};
50
50
+
hashdiff = {
51
51
+
source = {
52
52
+
remotes = ["https://rubygems.org"];
53
53
+
sha256 = "1n6hj7k7b9hazac0j48ypbak2nqi5wy4nh5cjra6xl3a92r8db0a";
54
54
+
type = "gem";
55
55
+
};
56
56
+
version = "0.3.4";
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
+
indentation = {
67
67
+
source = {
68
68
+
remotes = ["https://rubygems.org"];
69
69
+
sha256 = "0ix64qgmm91xm1yiqxdcn9bqb1l6gwvkv7322yni34b3bd16lgvc";
70
70
+
type = "gem";
71
71
+
};
72
72
+
version = "0.1.1";
73
73
+
};
74
74
+
molinillo = {
75
75
+
source = {
76
76
+
remotes = ["https://rubygems.org"];
77
77
+
sha256 = "19h1nks0x2ljwyijs2rd1f9sh05j8xqvjaqk1rslp5nyy6h4a758";
78
78
+
type = "gem";
79
79
+
};
80
80
+
version = "0.5.7";
81
81
+
};
82
82
+
semverse = {
83
83
+
source = {
84
84
+
remotes = ["https://rubygems.org"];
85
85
+
sha256 = "1cf6iv5wgwb7b8jf7il751223k9yahz9aym06s9r0prda5mwddyy";
86
86
+
type = "gem";
87
87
+
};
88
88
+
version = "2.0.0";
89
89
+
};
90
90
+
smart_colored = {
91
91
+
source = {
92
92
+
remotes = ["https://rubygems.org"];
93
93
+
sha256 = "0hccah5iwsvn9rf7zdgl7mdbh0h63vfwy1c6d280cb9qkfj8rdny";
94
94
+
type = "gem";
95
95
+
};
96
96
+
version = "1.1.1";
97
97
+
};
98
98
+
solve = {
99
99
+
source = {
100
100
+
remotes = ["https://rubygems.org"];
101
101
+
sha256 = "0bbzny2bl94mv1xwcfrxbi3fjhxxawlz6la7mip2wwz9kkaf376h";
102
102
+
type = "gem";
103
103
+
};
104
104
+
version = "3.1.0";
105
105
+
};
106
106
+
uri-ssh_git = {
107
107
+
source = {
108
108
+
remotes = ["https://rubygems.org"];
109
109
+
sha256 = "0klyyvivbjll2ry18d8fhm1rbxbzd4kqa9lskxyiha4ndlb22cqj";
110
110
+
type = "gem";
111
111
+
};
112
112
+
version = "2.0.0";
113
113
+
};
114
114
+
}
+2
pkgs/top-level/all-packages.nix
···
957
957
958
958
elementary-icon-theme = callPackage ../data/icons/elementary-icon-theme { };
959
959
960
960
+
elm-github-install = callPackage ../tools/package-management/elm-github-install { };
961
961
+
960
962
emby = callPackage ../servers/emby { };
961
963
962
964
enca = callPackage ../tools/text/enca { };