tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
cbor-diag: init at 0.5.2
Felipe Espinoza
8 years ago
5bebf6be
88e83b07
+89
5 changed files
expand all
collapse all
unified
split
pkgs
development
tools
cbor-diag
Gemfile
Gemfile.lock
default.nix
gemset.nix
top-level
all-packages.nix
+2
pkgs/development/tools/cbor-diag/Gemfile
···
1
1
+
source 'https://rubygems.org'
2
2
+
gem 'cbor-diag'
+19
pkgs/development/tools/cbor-diag/Gemfile.lock
···
1
1
+
GEM
2
2
+
remote: https://rubygems.org/
3
3
+
specs:
4
4
+
cbor-diag (0.5.2)
5
5
+
json
6
6
+
treetop (~> 1)
7
7
+
json (2.1.0)
8
8
+
polyglot (0.3.5)
9
9
+
treetop (1.6.10)
10
10
+
polyglot (~> 0.3)
11
11
+
12
12
+
PLATFORMS
13
13
+
ruby
14
14
+
15
15
+
DEPENDENCIES
16
16
+
cbor-diag
17
17
+
18
18
+
BUNDLED WITH
19
19
+
1.14.6
+30
pkgs/development/tools/cbor-diag/default.nix
···
1
1
+
{ lib, bundlerApp, ruby }:
2
2
+
3
3
+
bundlerApp {
4
4
+
pname = "cbor-diag";
5
5
+
6
6
+
inherit ruby;
7
7
+
gemdir = ./.;
8
8
+
9
9
+
exes = [
10
10
+
"cbor2diag.rb"
11
11
+
"cbor2json.rb"
12
12
+
"cbor2pretty.rb"
13
13
+
"cbor2yaml.rb"
14
14
+
"diag2cbor.rb"
15
15
+
"diag2pretty.rb"
16
16
+
"json2cbor.rb"
17
17
+
"json2pretty.rb"
18
18
+
"pretty2cbor.rb"
19
19
+
"pretty2diag.rb"
20
20
+
"yaml2cbor.rb"
21
21
+
];
22
22
+
23
23
+
meta = with lib; {
24
24
+
description = "CBOR diagnostic utilities";
25
25
+
homepage = https://github.com/cabo/cbor-diag;
26
26
+
license = with licenses; asl20;
27
27
+
maintainers = with maintainers; [ fdns ];
28
28
+
platforms = platforms.unix;
29
29
+
};
30
30
+
}
+36
pkgs/development/tools/cbor-diag/gemset.nix
···
1
1
+
{
2
2
+
cbor-diag = {
3
3
+
dependencies = ["json" "treetop"];
4
4
+
source = {
5
5
+
remotes = ["https://rubygems.org"];
6
6
+
sha256 = "1g4pxf1ag4pyb351m06l08ig1smnf8w27ynqfxkgmwak5mh1z7w1";
7
7
+
type = "gem";
8
8
+
};
9
9
+
version = "0.5.2";
10
10
+
};
11
11
+
json = {
12
12
+
source = {
13
13
+
remotes = ["https://rubygems.org"];
14
14
+
sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
15
15
+
type = "gem";
16
16
+
};
17
17
+
version = "2.1.0";
18
18
+
};
19
19
+
polyglot = {
20
20
+
source = {
21
21
+
remotes = ["https://rubygems.org"];
22
22
+
sha256 = "1bqnxwyip623d8pr29rg6m8r0hdg08fpr2yb74f46rn1wgsnxmjr";
23
23
+
type = "gem";
24
24
+
};
25
25
+
version = "0.3.5";
26
26
+
};
27
27
+
treetop = {
28
28
+
dependencies = ["polyglot"];
29
29
+
source = {
30
30
+
remotes = ["https://rubygems.org"];
31
31
+
sha256 = "0g31pijhnv7z960sd09lckmw9h8rs3wmc8g4ihmppszxqm99zpv7";
32
32
+
type = "gem";
33
33
+
};
34
34
+
version = "1.6.10";
35
35
+
};
36
36
+
}
+2
pkgs/top-level/all-packages.nix
···
977
977
978
978
image-analyzer = callPackage ../misc/emulators/cdemu/analyzer.nix { };
979
979
980
980
+
cbor-diag = callPackage ../development/tools/cbor-diag { };
981
981
+
980
982
ccnet = callPackage ../tools/networking/ccnet { };
981
983
982
984
cddl = callPackage ../development/tools/cddl { };