python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / cbor-diag / default.nix
blob118197af2d1fdaf15ddacc4268a39d2ca66fcf55
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "cbor-diag";
6   gemdir = ./.;
8   exes = [
9     "cbor2diag.rb"
10     "cbor2json.rb"
11     "cbor2pretty.rb"
12     "cbor2yaml.rb"
13     "diag2cbor.rb"
14     "diag2pretty.rb"
15     "json2cbor.rb"
16     "json2pretty.rb"
17     "pretty2cbor.rb"
18     "pretty2diag.rb"
19     "yaml2cbor.rb"
20   ];
22   passthru.updateScript = bundlerUpdateScript "cbor-diag";
24   meta = with lib; {
25     description = "CBOR diagnostic utilities";
26     homepage    = "https://github.com/cabo/cbor-diag";
27     license     = with licenses; asl20;
28     maintainers = with maintainers; [ fdns nicknovitski ];
29     platforms   = platforms.unix;
30   };