lol

cbor-diag: init at 0.5.2

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