2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2018-03-22 16:34:00 -07:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "cbor-diag";
|
|
|
|
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
exes = [
|
|
|
|
"cbor2diag.rb"
|
|
|
|
"cbor2json.rb"
|
|
|
|
"cbor2pretty.rb"
|
|
|
|
"cbor2yaml.rb"
|
|
|
|
"diag2cbor.rb"
|
|
|
|
"diag2pretty.rb"
|
|
|
|
"json2cbor.rb"
|
|
|
|
"json2pretty.rb"
|
|
|
|
"pretty2cbor.rb"
|
|
|
|
"pretty2diag.rb"
|
|
|
|
"yaml2cbor.rb"
|
|
|
|
];
|
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "cbor-diag";
|
|
|
|
|
2018-03-22 16:34:00 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "CBOR diagnostic utilities";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/cabo/cbor-diag";
|
2018-03-22 16:34:00 -07:00
|
|
|
license = with licenses; asl20;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ fdns nicknovitski ];
|
2018-03-22 16:34:00 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|