From 675540892719387e1e4e76f097ff8e4ee4b559f7 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 14 May 2021 14:52:23 +0200 Subject: gnu: nushell: Update to 0.31.0. * gnu/packages/shells.scm (rust-nu-plugin-query-json-0.31): (rust-nu-pretty-hex-0.31): New variables. (nushell): (rust-nu-ansi-term-0.31): (rust-nu-cli-0.31): (rust-nu-command-0.31): (rust-nu-data-0.31): (rust-nu-engine-0.31): (rust-nu-errors-0.31): (rust-nu-json-0.31): (rust-nu-parser-0.31): (rust-nu-plugin-0.31): (rust-nu-plugin-binaryview-0.31): (rust-nu-plugin-chart-0.31): (rust-nu-plugin-fetch-0.31): (rust-nu-plugin-from-bson-0.31): (rust-nu-plugin-from-sqlite-0.31): (rust-nu-plugin-inc-0.31): (rust-nu-plugin-match-0.31): (rust-nu-plugin-post-0.31): (rust-nu-plugin-ps-0.31): (rust-nu-plugin-sys-0.31): (rust-nu-plugin-textview-0.31): (rust-nu-plugin-to-bson-0.31): (rust-nu-plugin-to-sqlite-0.31): (rust-nu-plugin-tree-0.31): (rust-nu-plugin-xpath-0.31): (rust-nu-protocol-0.31): (rust-nu-source-0.31): (rust-nu-stream-0.31): (rust-nu-test-support-0.31): Update to 0.31.0. --- gnu/packages/shells.scm | 681 ++++++++++++++++++++++++++---------------------- 1 file changed, 370 insertions(+), 311 deletions(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index d21a7a6943..5c35b11333 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -945,7 +945,7 @@ files and text.") (define-public nushell (package (name "nushell") - (version "0.29.0") + (version "0.31.0") (source (origin (method git-fetch) @@ -954,7 +954,7 @@ files and text.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0x7r8ipvypf6py2h03pdqr8pal6vyp6mskvss1rr8f0bcy3gr725")))) + (base32 "1dpbc6m0pxizkh4r02nw1i1fx9v43llylqnd28naqkklwc15pb2w")))) (build-system cargo-build-system) (arguments `(#:rust ,rust-1.47 @@ -966,39 +966,40 @@ files and text.") ("rust-futures" ,rust-futures-0.3) ("rust-itertools" ,rust-itertools-0.10) ("rust-log" ,rust-log-0.4) - ("rust-nu-cli" ,rust-nu-cli-0.29) - ("rust-nu-command" ,rust-nu-command-0.29) - ("rust-nu-data" ,rust-nu-data-0.29) - ("rust-nu-engine" ,rust-nu-engine-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-parser" ,rust-nu-parser-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) - ("rust-nu-plugin-binaryview" ,rust-nu-plugin-binaryview-0.29) - ("rust-nu-plugin-chart" ,rust-nu-plugin-chart-0.29) - ("rust-nu-plugin-fetch" ,rust-nu-plugin-fetch-0.29) - ("rust-nu-plugin-from-bson" ,rust-nu-plugin-from-bson-0.29) - ("rust-nu-plugin-from-sqlite" ,rust-nu-plugin-from-sqlite-0.29) - ("rust-nu-plugin-inc" ,rust-nu-plugin-inc-0.29) - ("rust-nu-plugin-match" ,rust-nu-plugin-match-0.29) - ("rust-nu-plugin-post" ,rust-nu-plugin-post-0.29) - ("rust-nu-plugin-ps" ,rust-nu-plugin-ps-0.29) - ("rust-nu-plugin-s3" ,rust-nu-plugin-s3-0.29) - ("rust-nu-plugin-selector" ,rust-nu-plugin-selector-0.29) - ("rust-nu-plugin-start" ,rust-nu-plugin-start-0.29) - ("rust-nu-plugin-sys" ,rust-nu-plugin-sys-0.29) - ("rust-nu-plugin-textview" ,rust-nu-plugin-textview-0.29) - ("rust-nu-plugin-to-bson" ,rust-nu-plugin-to-bson-0.29) - ("rust-nu-plugin-to-sqlite" ,rust-nu-plugin-to-sqlite-0.29) - ("rust-nu-plugin-tree" ,rust-nu-plugin-tree-0.29) - ("rust-nu-plugin-xpath" ,rust-nu-plugin-xpath-0.29) + ("rust-nu-cli" ,rust-nu-cli-0.31) + ("rust-nu-command" ,rust-nu-command-0.31) + ("rust-nu-data" ,rust-nu-data-0.31) + ("rust-nu-engine" ,rust-nu-engine-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-parser" ,rust-nu-parser-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) + ("rust-nu-plugin-binaryview" ,rust-nu-plugin-binaryview-0.31) + ("rust-nu-plugin-chart" ,rust-nu-plugin-chart-0.31) + ("rust-nu-plugin-fetch" ,rust-nu-plugin-fetch-0.31) + ("rust-nu-plugin-from-bson" ,rust-nu-plugin-from-bson-0.31) + ("rust-nu-plugin-from-sqlite" ,rust-nu-plugin-from-sqlite-0.31) + ("rust-nu-plugin-inc" ,rust-nu-plugin-inc-0.31) + ("rust-nu-plugin-match" ,rust-nu-plugin-match-0.31) + ("rust-nu-plugin-post" ,rust-nu-plugin-post-0.31) + ("rust-nu-plugin-ps" ,rust-nu-plugin-ps-0.31) + ("rust-nu-plugin-query-json" ,rust-nu-plugin-query-json-0.31) + ("rust-nu-plugin-s3" ,rust-nu-plugin-s3-0.31) + ("rust-nu-plugin-selector" ,rust-nu-plugin-selector-0.31) + ("rust-nu-plugin-start" ,rust-nu-plugin-start-0.31) + ("rust-nu-plugin-sys" ,rust-nu-plugin-sys-0.31) + ("rust-nu-plugin-textview" ,rust-nu-plugin-textview-0.31) + ("rust-nu-plugin-to-bson" ,rust-nu-plugin-to-bson-0.31) + ("rust-nu-plugin-to-sqlite" ,rust-nu-plugin-to-sqlite-0.31) + ("rust-nu-plugin-tree" ,rust-nu-plugin-tree-0.31) + ("rust-nu-plugin-xpath" ,rust-nu-plugin-xpath-0.31) ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4)) #:cargo-development-inputs (("rust-dunce" ,rust-dunce-1) ("rust-hamcrest2" ,rust-hamcrest2-0.3) - ("rust-nu-test-support" ,rust-nu-test-support-0.29) + ("rust-nu-test-support" ,rust-nu-test-support-0.31) ("rust-serial-test" ,rust-serial-test-0.5)))) (native-inputs `(("pkg-config" ,pkg-config) @@ -1022,17 +1023,17 @@ directory. These values can be piped through a series of steps, in a series of commands called a ``pipeline''.") (license license:expat))) -(define-public rust-nu-ansi-term-0.29 +(define-public rust-nu-ansi-term-0.31 (package (name "rust-nu-ansi-term") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-ansi-term" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0zlcma4kg6rsfp5sgfp3yy717bdrn9nq32rdi2nabpwg3qa9mmkb")))) + (base32 "193nwg7j3p7mw2282vsx8ylfxg0wyydrgxd78ph3rqfqi83468n6")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1046,24 +1047,36 @@ of commands called a ``pipeline''.") underline).") (license license:expat))) -(define-public rust-nu-cli-0.29 +(define-public rust-nu-ansi-term-0.29 (package - (name "rust-nu-cli") + (inherit rust-nu-ansi-term-0.31) + (name "rust-nu-ansi-term") (version "0.29.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "nu-ansi-term" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0zlcma4kg6rsfp5sgfp3yy717bdrn9nq32rdi2nabpwg3qa9mmkb")))))) + +(define-public rust-nu-cli-0.31 + (package + (name "rust-nu-cli") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-cli" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0ya95r54k59h0gyz2wgj8y2lhddnk3aw7ww1npzcbfsy1xi1zvi5")))) + (base32 "1kg68san8p3nnhhfsld21hv5s6dx1kadlsc71l661p4f8pjcqp3r")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-arboard" ,rust-arboard-1) - ("rust-async-recursion" - ,rust-async-recursion-0.3) + ("rust-async-recursion" ,rust-async-recursion-0.3) ("rust-async-trait" ,rust-async-trait-0.1) ("rust-base64" ,rust-base64-0.13) ("rust-bigdecimal" ,rust-bigdecimal-0.2) @@ -1073,13 +1086,11 @@ underline).") ("rust-chrono" ,rust-chrono-0.4) ("rust-chrono-tz" ,rust-chrono-tz-0.5) ("rust-clap" ,rust-clap-2) - ("rust-codespan-reporting" - ,rust-codespan-reporting-0.11) + ("rust-codespan-reporting" ,rust-codespan-reporting-0.11) ("rust-csv" ,rust-csv-1) ("rust-ctrlc" ,rust-ctrlc-3) ("rust-derive-new" ,rust-derive-new-0.5) - ("rust-directories-next" - ,rust-directories-next-2) + ("rust-directories-next" ,rust-directories-next-2) ("rust-dirs-next" ,rust-dirs-next-2) ("rust-dtparse" ,rust-dtparse-1) ("rust-dunce" ,rust-dunce-1) @@ -1094,40 +1105,37 @@ underline).") ("rust-glob" ,rust-glob-0.3) ("rust-htmlescape" ,rust-htmlescape-0.3) ("rust-ical" ,rust-ical-0.7) - ("rust-ichwh" ,rust-ichwh-0.3) ("rust-indexmap" ,rust-indexmap-1) ("rust-inflector" ,rust-inflector-0.11) ("rust-itertools" ,rust-itertools-0.10) ("rust-lazy-static" ,rust-lazy-static-1) ("rust-log" ,rust-log-0.4) ("rust-meval" ,rust-meval-0.2) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) - ("rust-nu-command" ,rust-nu-command-0.29) - ("rust-nu-data" ,rust-nu-data-0.29) - ("rust-nu-engine" ,rust-nu-engine-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-json" ,rust-nu-json-0.29) - ("rust-nu-parser" ,rust-nu-parser-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-stream" ,rust-nu-stream-0.29) - ("rust-nu-table" ,rust-nu-table-0.29) - ("rust-nu-test-support" - ,rust-nu-test-support-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.31) + ("rust-nu-command" ,rust-nu-command-0.31) + ("rust-nu-data" ,rust-nu-data-0.31) + ("rust-nu-engine" ,rust-nu-engine-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-json" ,rust-nu-json-0.31) + ("rust-nu-parser" ,rust-nu-parser-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-pretty-hex" ,rust-nu-pretty-hex-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-stream" ,rust-nu-stream-0.31) + ("rust-nu-table" ,rust-nu-table-0.31) + ("rust-nu-test-support" ,rust-nu-test-support-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-format" ,rust-num-format-0.4) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-parking-lot" ,rust-parking-lot-0.11) ("rust-pin-utils" ,rust-pin-utils-0.1) - ("rust-pretty-hex" ,rust-pretty-hex-0.2) ("rust-ptree" ,rust-ptree-0.3) - ("rust-query-interface" - ,rust-query-interface-0.3) + ("rust-query-interface" ,rust-query-interface-0.3) + ("rust-quick-xml" ,rust-quick-xml-0.21) ("rust-quickcheck" ,rust-quickcheck-1) ("rust-quickcheck-macros" ,rust-quickcheck-macros-1) - ("rust-quick-xml" ,rust-quick-xml-0.21) ("rust-rand" ,rust-rand-0.8) ("rust-rayon" ,rust-rayon-1) ("rust-regex" ,rust-regex-1) @@ -1139,15 +1147,13 @@ underline).") ("rust-serde-bytes" ,rust-serde-bytes-0.11) ("rust-serde-ini" ,rust-serde-ini-0.2) ("rust-serde-json" ,rust-serde-json-1) - ("rust-serde-urlencoded" - ,rust-serde-urlencoded-0.7) + ("rust-serde-urlencoded" ,rust-serde-urlencoded-0.7) ("rust-serde-yaml" ,rust-serde-yaml-0.8) ("rust-sha2" ,rust-sha2-0.9) ("rust-shadow-rs" ,rust-shadow-rs-0.5) ("rust-shadow-rs" ,rust-shadow-rs-0.5) ("rust-shellexpand" ,rust-shellexpand-2) - ("rust-strip-ansi-escapes" - ,rust-strip-ansi-escapes-0.1) + ("rust-strip-ansi-escapes" ,rust-strip-ansi-escapes-0.1) ("rust-sxd-document" ,rust-sxd-document-0.3) ("rust-sxd-xpath" ,rust-sxd-xpath-0.4) ("rust-tempfile" ,rust-tempfile-3) @@ -1158,8 +1164,7 @@ underline).") ("rust-toml" ,rust-toml-0.5) ("rust-trash" ,rust-trash-1) ("rust-umask" ,rust-umask-1) - ("rust-unicode-segmentation" - ,rust-unicode-segmentation-1) + ("rust-unicode-segmentation" ,rust-unicode-segmentation-1) ("rust-url" ,rust-url-2) ("rust-users" ,rust-users-0.11) ("rust-uuid" ,rust-uuid-0.8) @@ -1170,25 +1175,22 @@ underline).") (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-command-0.29 +(define-public rust-nu-command-0.31 (package (name "rust-nu-command") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-command" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0nydc7vyrhfw99bimjs6061zgcqqi8hjjx20sq3qn2njgk1p730l")))) + (base32 "079izj7fwdrdi9zi2260gkbqma7bm3lnx57hdlcslyg41mxka44c")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-arboard" ,rust-arboard-1) - ("rust-async-recursion" - ,rust-async-recursion-0.3) - ("rust-async-trait" ,rust-async-trait-0.1) ("rust-base64" ,rust-base64-0.13) ("rust-bigdecimal" ,rust-bigdecimal-0.2) ("rust-byte-unit" ,rust-byte-unit-4) @@ -1213,13 +1215,10 @@ underline).") ("rust-filesize" ,rust-filesize-0.2) ("rust-fs-extra" ,rust-fs-extra-1) ("rust-futures" ,rust-futures-0.3) - ("rust-futures-util" ,rust-futures-util-0.3) - ("rust-futures-codec" ,rust-futures-codec-0.4) ("rust-getset" ,rust-getset-0.1) ("rust-glob" ,rust-glob-0.3) ("rust-htmlescape" ,rust-htmlescape-0.3) ("rust-ical" ,rust-ical-0.7) - ("rust-ichwh" ,rust-ichwh-0.3) ("rust-indexmap" ,rust-indexmap-1) ("rust-inflector" ,rust-inflector-0.11) ("rust-itertools" ,rust-itertools-0.10) @@ -1228,26 +1227,26 @@ underline).") ("rust-md5" ,rust-md5-0.7) ("rust-meval" ,rust-meval-0.2) ("rust-minus" ,rust-minus-3) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) - ("rust-nu-data" ,rust-nu-data-0.29) - ("rust-nu-engine" ,rust-nu-engine-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-json" ,rust-nu-json-0.29) - ("rust-nu-parser" ,rust-nu-parser-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-stream" ,rust-nu-stream-0.29) - ("rust-nu-table" ,rust-nu-table-0.29) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.31) + ("rust-nu-data" ,rust-nu-data-0.31) + ("rust-nu-engine" ,rust-nu-engine-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-json" ,rust-nu-json-0.31) + ("rust-nu-parser" ,rust-nu-parser-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-pretty-hex" ,rust-nu-pretty-hex-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-stream" ,rust-nu-stream-0.31) + ("rust-nu-table" ,rust-nu-table-0.31) ("rust-nu-test-support" - ,rust-nu-test-support-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ,rust-nu-test-support-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-format" ,rust-num-format-0.4) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-parking-lot" ,rust-parking-lot-0.11) ("rust-pin-utils" ,rust-pin-utils-0.1) - ("rust-pretty-hex" ,rust-pretty-hex-0.2) ("rust-ptree" ,rust-ptree-0.3) ("rust-query-interface" ,rust-query-interface-0.3) @@ -1293,17 +1292,17 @@ underline).") (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-data-0.29 +(define-public rust-nu-data-0.31 (package (name "rust-nu-data") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-data" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1niljv9vm42py1hmf8na03xbxb4vvypmrxk765ih9m2jg2zq9386")))) + (base32 "0sdl6s7j4bx03lmc65x3mnyn75mckq4gb96kr46a0g74mmds1j73")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1311,6 +1310,7 @@ underline).") (("rust-bigdecimal" ,rust-bigdecimal-0.2) ("rust-byte-unit" ,rust-byte-unit-4) ("rust-chrono" ,rust-chrono-0.4) + ("rust-common-path" ,rust-common-path-1) ("rust-derive-new" ,rust-derive-new-0.5) ("rust-directories-next" ,rust-directories-next-2) @@ -1318,20 +1318,21 @@ underline).") ("rust-getset" ,rust-getset-0.1) ("rust-indexmap" ,rust-indexmap-1) ("rust-log" ,rust-log-0.4) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-table" ,rust-nu-table-0.29) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-table" ,rust-nu-table-0.31) ("rust-nu-test-support" - ,rust-nu-test-support-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ,rust-nu-test-support-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-format" ,rust-num-format-0.4) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-query-interface" ,rust-query-interface-0.3) ("rust-serde" ,rust-serde-1) + ("rust-sha2" ,rust-sha2-0.9) ("rust-toml" ,rust-toml-0.5) ("rust-users" ,rust-users-0.11)))) (home-page "https://www.nushell.sh") @@ -1339,30 +1340,34 @@ underline).") (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-engine-0.29 +(define-public rust-nu-engine-0.31 (package (name "rust-nu-engine") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-engine" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1wz033zamlakpca5k2bgal2ykd5ia76g5fw3r5xzb6jb63q7xqhf")))) + (base32 "10jw88xiv7hnvrngjfsih147zipnxcmax3a0az064cnf00kx8bkl")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-async-recursion" + (("rust-ansi-term" ,rust-ansi-term-0.12) + ("rust-async-recursion" ,rust-async-recursion-0.3) ("rust-async-trait" ,rust-async-trait-0.1) + ("rust-bigdecimal" ,rust-bigdecimal-0.2) ("rust-bytes" ,rust-bytes-0.5) + ("rust-chrono" ,rust-chrono-0.4) ("rust-codespan-reporting" ,rust-codespan-reporting-0.11) ("rust-derive-new" ,rust-derive-new-0.5) ("rust-dirs-next" ,rust-dirs-next-2) ("rust-dunce" ,rust-dunce-1) + ("rust-dyn-clone" ,rust-dyn-clone-1) ("rust-encoding-rs" ,rust-encoding-rs-0.8) ("rust-filesize" ,rust-filesize-0.2) ("rust-fs-extra" ,rust-fs-extra-1) @@ -1374,15 +1379,18 @@ underline).") ("rust-indexmap" ,rust-indexmap-1) ("rust-itertools" ,rust-itertools-0.10) ("rust-log" ,rust-log-0.4) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) - ("rust-nu-data" ,rust-nu-data-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-parser" ,rust-nu-parser-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-stream" ,rust-nu-stream-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.31) + ("rust-nu-data" ,rust-nu-data-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-parser" ,rust-nu-parser-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-stream" ,rust-nu-stream-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) + ("rust-num-bigint" ,rust-num-bigint-0.3) + ("rust-num-format" ,rust-num-format-0.4) + ("rust-num-traits" ,rust-num-traits-0.2) ("rust-parking-lot" ,rust-parking-lot-0.11) ("rust-rayon" ,rust-rayon-1) ("rust-serde" ,rust-serde-1) @@ -1399,17 +1407,17 @@ underline).") (description "Core commands for nushell") (license license:expat))) -(define-public rust-nu-errors-0.29 +(define-public rust-nu-errors-0.31 (package (name "rust-nu-errors") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-errors" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1xxdirdd57x20irn1z1p2987cyyi8l6k6shlblikjjf97d8kjk0n")))) + (base32 "0hkkx66gcj6nail9r65yf92zxz8f8mdxv4y8by3vijqmv22kshgb")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1420,8 +1428,8 @@ underline).") ("rust-derive-new" ,rust-derive-new-0.5) ("rust-getset" ,rust-getset-0.1) ("rust-glob" ,rust-glob-0.3) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-serde" ,rust-serde-1) @@ -1433,17 +1441,17 @@ underline).") (description "Core error subsystem for Nushell") (license license:expat))) -(define-public rust-nu-json-0.29 +(define-public rust-nu-json-0.31 (package (name "rust-nu-json") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-json" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1c1xj96gmyznqys3mxgnir4jf88npg4jkcwh9xa420agb03n9gzh")))) + (base32 "1jr0314xhz2jfksr6wiq1x30dh1k63bx92li9ls1k3nw6s4pjdlv")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1459,17 +1467,17 @@ underline).") (description "This package is a fork of @code{serde-hjson}.") (license license:expat))) -(define-public rust-nu-parser-0.29 +(define-public rust-nu-parser-0.31 (package (name "rust-nu-parser") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-parser" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1cmqx4gw7xg6ag58y7pq94prwkagc40wcrxbk2vzqj206h97xvmi")))) + (base32 "0apiq41vvaglxbfhf8mil0amqjsm3lx00kcjshjlsxmpp6gyc951")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1484,11 +1492,11 @@ underline).") ("rust-indexmap" ,rust-indexmap-1) ("rust-itertools" ,rust-itertools-0.10) ("rust-log" ,rust-log-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-nu-test-support" - ,rust-nu-test-support-0.29) + ,rust-nu-test-support-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-serde" ,rust-serde-1) @@ -1499,10 +1507,10 @@ underline).") (description "Nushell parser") (license license:expat))) -(define-public rust-nu-plugin-0.29 +(define-public rust-nu-plugin-0.31 (package (name "rust-nu-plugin") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) @@ -1510,19 +1518,19 @@ underline).") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "03qqvh4jhpzwb1mh4f8pz2m88sa825giz5g7lr2l96nb0qfya19j")))) + (base32 "108sak4c0kym8pmgdja06yzfb45q2r67b5xy1lb3pf5067rcl0sn")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.2) ("rust-indexmap" ,rust-indexmap-1) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-nu-test-support" - ,rust-nu-test-support-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ,rust-nu-test-support-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-serde" ,rust-serde-1) ("rust-serde-json" ,rust-serde-json-1)))) @@ -1531,17 +1539,17 @@ underline).") (description "Nushell Plugin") (license license:expat))) -(define-public rust-nu-plugin-binaryview-0.29 +(define-public rust-nu-plugin-binaryview-0.31 (package (name "rust-nu-plugin-binaryview") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_binaryview" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0x7g9lncglbpdjxk1r47k49ha9yir03znis6zs7i25qwsb2sgynz")))) + (base32 "15ifd9j9r131912mmschd9w4br82h305rabz62lc1x2aw5qdp094")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1549,12 +1557,12 @@ underline).") (("rust-crossterm" ,rust-crossterm-0.19) ("rust-image" ,rust-image-0.22) ("rust-neso" ,rust-neso-0.5) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-pretty-hex" ,rust-pretty-hex-0.2) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-pretty-hex" ,rust-nu-pretty-hex-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-rawkey" ,rust-rawkey-0.1)))) (home-page "https://www.nushell.sh") (synopsis "Binary viewer plugin for Nushell") @@ -1562,29 +1570,29 @@ underline).") "This package provides a binary viewer plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-chart-0.29 +(define-public rust-nu-plugin-chart-0.31 (package (name "rust-nu-plugin-chart") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_chart" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1b4zqnm788728jzqxcipik4x3lgj8yf0cjpxznbb10bgyfdp0jxk")))) + (base32 "02a0gyibbmkhzbqasx648jwhw6g4056ngsjdnh54wfk9mxzwb37v")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-crossterm" ,rust-crossterm-0.19) - ("rust-nu-cli" ,rust-nu-cli-0.29) - ("rust-nu-data" ,rust-nu-data-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ("rust-nu-cli" ,rust-nu-cli-0.31) + ("rust-nu-data" ,rust-nu-data-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-tui" ,rust-tui-0.14)))) (home-page "https://www.nushell.sh") (synopsis "Plugin to display charts") @@ -1592,17 +1600,17 @@ underline).") "This package provides a plugin to display charts in Nushell.") (license license:expat))) -(define-public rust-nu-plugin-fetch-0.29 +(define-public rust-nu-plugin-fetch-0.31 (package (name "rust-nu-plugin-fetch") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_fetch" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "086z2a2fmi4v95kg6bgzp1ylilbbflxnf242vnkmw6ys5gs8g4dy")))) + (base32 "0w6739dznxympqv775621r5mgfi5f7i56s6irgpmfpzkvl4xvk53")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1610,10 +1618,10 @@ underline).") (("rust-base64" ,rust-base64-0.13) ("rust-futures" ,rust-futures-0.3) ("rust-mime" ,rust-mime-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-surf" ,rust-surf-2) ("rust-url" ,rust-url-2)))) (home-page "https://www.nushell.sh") @@ -1621,28 +1629,28 @@ underline).") (description "This package provides a URL fetch plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-from-bson-0.29 +(define-public rust-nu-plugin-from-bson-0.31 (package (name "rust-nu-plugin-from-bson") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_from_bson" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "02932wzrqrg4777cm1lpncig9cxn7s80fmlrkavrkw9dh2lnbbms")))) + (base32 "03v3r77c7ghg1asjllvipvfffilx2l9wqb38qzd8rp7hb9dj01g6")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.2) ("rust-bson" ,rust-bson-0.14) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-traits" ,rust-num-traits-0.2)))) (home-page "https://www.nushell.sh") (synopsis "Converter plugin to the bson format for Nushell") @@ -1651,27 +1659,27 @@ underline).") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-from-sqlite-0.29 +(define-public rust-nu-plugin-from-sqlite-0.31 (package (name "rust-nu-plugin-from-sqlite") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_from_sqlite" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1mnavx7pa5isic2rnrxd8462axh826rimscjpjxq4nk77wkzp5s8")))) + (base32 "1gs88cbs55hx4vjbr286b8xckigfgm2908aaa87dv87bhxfmjqim")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.2) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-rusqlite" ,rust-rusqlite-0.24) ("rust-tempfile" ,rust-tempfile-3)))) @@ -1682,28 +1690,28 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-inc-0.29 +(define-public rust-nu-plugin-inc-0.31 (package (name "rust-nu-plugin-inc") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_inc" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0w0dmqa6rv12whpmsvli5nb7pnazrhdp08x2fzrabz60rq1qsfx9")))) + (base32 "0qfi48rh813vbmlaj0idkkcjy6dkx0jz7k023dwdf47v0m6c34hq")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + (("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-nu-test-support" - ,rust-nu-test-support-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ,rust-nu-test-support-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-semver" ,rust-semver-0.11)))) (home-page "https://www.nushell.sh") (synopsis "Version incrementer plugin for Nushell") @@ -1712,25 +1720,25 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-match-0.29 +(define-public rust-nu-plugin-match-0.31 (package (name "rust-nu-plugin-match") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_match" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0hmxhd3z7p88xg5g75kljl0g6rp5k22ff0k9f2a6j9j7y3rrdlmb")))) + (base32 "175wcqjzpchhcmgpwk15xhbrbq63wzcpgldrz5m97z5qirwgskpj")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + (("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-regex" ,rust-regex-1)))) (home-page "https://www.nushell.sh") (synopsis "Regex match plugin for Nushell") @@ -1738,27 +1746,27 @@ Nushell.") "This package provides a regex match plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-post-0.29 +(define-public rust-nu-plugin-post-0.31 (package (name "rust-nu-plugin-post") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_post" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1d2198ks2cw6phg1hdsz75rqh5l49whcsl5hl21g86y2j5sl0hpd")))) + (base32 "1sr9aaqfqxpq16yh0sc9m83cj9xgackqbk7hmy2j97kj3vjmwd4w")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-base64" ,rust-base64-0.13) ("rust-futures" ,rust-futures-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-serde-json" ,rust-serde-json-1) ("rust-surf" ,rust-surf-1) @@ -1768,27 +1776,27 @@ Nushell.") (description "This package is an HTTP POST plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-ps-0.29 +(define-public rust-nu-plugin-ps-0.31 (package (name "rust-nu-plugin-ps") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_ps" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "00dy60fnii1iifv0rh1xm77jn37l068np46fp3izbsbq642vzf7m")))) + (base32 "1a60pjl9ihlppx9ssmfw4sy3d8rxpp513ydhvq57fc6rcilrxjz9")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-futures" ,rust-futures-0.3) ("rust-futures-timer" ,rust-futures-timer-3) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-sysinfo" ,rust-sysinfo-0.16)))) (home-page "https://www.nushell.sh") @@ -1797,82 +1805,108 @@ Nushell.") "This package provides a process list plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-s3-0.29 +(define-public rust-nu-plugin-query-json-0.31 + (package + (name "rust-nu-plugin-query-json") + (version "0.31.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "nu_plugin_query_json" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1f23chy7mglympvs5dcr5d5c3prxhci9lb51ajfmgcai3z334i7v")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-gjson" ,rust-gjson-0.7) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31)))) + (home-page "https://www.nushell.sh") + (synopsis "Query JSON files with Gjson") + (description "query json files with gjson") + (license license:expat))) + +(define-public rust-nu-plugin-s3-0.31 (package (name "rust-nu-plugin-s3") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_s3" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "00856l98gmmnv5bfg1vd6mqyk0zpkdrd1xgxqfi2c9nmsy2b1qfa")))) + (base32 "0khzvi9gsgv5zqikdx34ndgjw7168r9ckmik9z3wfzhsi2sjfz4k")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-futures" ,rust-futures-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-s3handler" ,rust-s3handler-0.6)))) (home-page "https://www.nushell.sh") (synopsis "S3 plugin for Nushell") (description "This package is an S3 plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-selector-0.29 +(define-public rust-nu-plugin-selector-0.31 (package (name "rust-nu-plugin-selector") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_selector" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "14hn8plcax4kljq5kw96881pngs7w2gy11k3hs1pmaxhr0bi6c8h")))) + (base32 "1lvxkxmknv18fc2whsib8qjrqydv7jz1xlijss2yyc8i0p9m0rxv")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-nipper" ,rust-nipper-0.1) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29)))) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31)))) (home-page "https://www.nushell.sh") (synopsis "Web scraping using CSS selector") (description "This package provides web scraping using CSS selector.") (license license:expat))) -(define-public rust-nu-plugin-start-0.29 +(define-public rust-nu-plugin-start-0.31 (package (name "rust-nu-plugin-start") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_start" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "002cjbdh4zn81zhc5a0gklfxdjslqbcbp1wcx5ijzpch40c5dyzj")))) + (base32 "1v5k4h6vw3ws1mvgjsgj2rr7zl7ab9zhfixai94wixs0vlwdfjic")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-glob" ,rust-glob-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-open" ,rust-open-1) - ("rust-url" ,rust-url-2)))) + ("rust-url" ,rust-url-2) + ("rust-webbrowser" ,rust-webbrowser-0.5)))) (home-page "https://www.nushell.sh") (synopsis "Plugin to open files/URLs directly from Nushell") (description @@ -1880,10 +1914,10 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-sys-0.29 +(define-public rust-nu-plugin-sys-0.31 (package (name "rust-nu-plugin-sys") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) @@ -1891,17 +1925,17 @@ Nushell.") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0s2jyaff4lngm1c5446618r5761d8dcbpsrs7p7vzp6g2dic1w69")))) + (base32 "049h5lar2f5mf3yx93pdzyjvydk0yfm5qp8brmyyrr6a23pk2c0b")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-futures" ,rust-futures-0.3) ("rust-futures-util" ,rust-futures-util-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-sysinfo" ,rust-sysinfo-0.16)))) (home-page "https://www.nushell.sh") @@ -1909,28 +1943,28 @@ Nushell.") (description "This package provides a system info plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-textview-0.29 +(define-public rust-nu-plugin-textview-0.31 (package (name "rust-nu-plugin-textview") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_textview" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "19kwh6rn0xk340yk0w1r3dfm328s9jqln8hgfqw5m3lld1hh1a4v")))) + (base32 "1qzpjmld8isin224cf7ss79radps983dw34m1sh7r5czzgwnf89m")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bat" ,rust-bat-0.17) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) - ("rust-nu-data" ,rust-nu-data-0.29) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.31) + ("rust-nu-data" ,rust-nu-data-0.31) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-term-size" ,rust-term-size-0.3) ("rust-url" ,rust-url-2)))) (home-page "https://www.nushell.sh") @@ -1939,27 +1973,27 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-to-bson-0.29 +(define-public rust-nu-plugin-to-bson-0.31 (package (name "rust-nu-plugin-to-bson") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_to_bson" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1j019frp663s511b7z9sz5vh77pvz0nn3w2asrk50xlyj5hfig55")))) + (base32 "19kj3m6a0xshi7fg3smaapag0mj7a2ddci6611dnlasnzj9f9gr3")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bson" ,rust-bson-0.14) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-traits" ,rust-num-traits-0.2)))) (home-page "https://www.nushell.sh") (synopsis "Converter plugin to the bson format for Nushell") @@ -1968,27 +2002,27 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-to-sqlite-0.29 +(define-public rust-nu-plugin-to-sqlite-0.31 (package (name "rust-nu-plugin-to-sqlite") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_to_sqlite" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0p86iyag0ci15i1nqyb74kp1lax9mgm73w5g3qkp2v97lihv12pf")))) + (base32 "19k427hwpllsyrdsh6qcclwx18nsq3zimz1z9b6kva0s32jzsdg6")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-hex" ,rust-hex-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-rusqlite" ,rust-rusqlite-0.24) ("rust-tempfile" ,rust-tempfile-3)))) @@ -1999,26 +2033,26 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-tree-0.29 +(define-public rust-nu-plugin-tree-0.31 (package (name "rust-nu-plugin-tree") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_tree" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "096l86ci540v0aj9xrvwd4ccgg388kabz4rbg88nrpw0rlacrbc3")))) + (base32 "17vgnqdws522ng373lg4cha5l136hs0zwvxf0393xjyr9i88q9jp")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-derive-new" ,rust-derive-new-0.5) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-ptree" ,rust-ptree-0.3)))) (home-page "https://www.nushell.sh") (synopsis "Tree viewer plugin for Nushell") @@ -2026,27 +2060,27 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-xpath-0.29 +(define-public rust-nu-plugin-xpath-0.31 (package (name "rust-nu-plugin-xpath") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_xpath" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0459awkffb2sydd2l5gbcx1kz466qkigb1bxn5ka208y9k5qz54v")))) + (base32 "0zgpbmsx5036c6a5cr2nmi5vv2jyra2a4gnpqq4pazw432h5m48a")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.2) ("rust-indexmap" ,rust-indexmap-1) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-plugin" ,rust-nu-plugin-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-plugin" ,rust-nu-plugin-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-sxd-document" ,rust-sxd-document-0.3) ("rust-sxd-xpath" ,rust-sxd-xpath-0.4)))) (home-page "https://www.nushell.sh") @@ -2054,17 +2088,42 @@ Nushell.") (description "Traverses XML") (license license:expat))) -(define-public rust-nu-protocol-0.29 +(define-public rust-nu-pretty-hex-0.31 + (package + (name "rust-nu-pretty-hex") + (version "0.31.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "nu-pretty-hex" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1crsmihbil68p3qb345d33m5p6xa7dkbdxrbxfxh7km4hflc2pq4")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-heapless" ,rust-heapless-0.6) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) + ("rust-rand" ,rust-rand-0.8)))) + (home-page "https://www.nushell.sh") + (synopsis "Pretty hex dump of bytes slice in the common style") + (description + "This crate provides pretty hex dump of bytes slice in the common +style.") + (license license:expat))) + +(define-public rust-nu-protocol-0.31 (package (name "rust-nu-protocol") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-protocol" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1iii3r37dcl7sf870qrzfkdc1iylbbkcycp1k5ifjvd5yxlkfpxx")))) + (base32 "1gsnd2p9mbc8b8bhirx8im65nhsbd8mfz655qk1mrl87s3sqiybh")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -2076,8 +2135,8 @@ Nushell.") ("rust-getset" ,rust-getset-0.1) ("rust-indexmap" ,rust-indexmap-1) ("rust-log" ,rust-log-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-integer" ,rust-num-integer-0.1) ("rust-num-traits" ,rust-num-traits-0.2) @@ -2091,17 +2150,17 @@ Nushell.") (description "Core values and protocols for Nushell") (license license:expat))) -(define-public rust-nu-source-0.29 +(define-public rust-nu-source-0.31 (package (name "rust-nu-source") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-source" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1m8phdw9iwawsq0ip4zn2w8ggjjr45z1ny2sgdb3h1y1awpnvdbq")))) + (base32 "1bpihjq3dfrry0mxdgg32sx8663rd2gxqkmnqgs4q7lj17ny2a9g")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -2118,46 +2177,46 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-stream-0.29 +(define-public rust-nu-stream-0.31 (package (name "rust-nu-stream") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-stream" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "15zx16s4wb23316ih4wqnnpajh1qz5vckpzk3k41qqkmar1w4sah")))) + (base32 "0ylmfqhhj4aaspwq51yb5wmsn7zhh19035yb0mr28ajygf38s1g7")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-futures" ,rust-futures-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29)))) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31)))) (home-page "https://www.nushell.sh") (synopsis "Nushell stream") (description "This package provides Nushell stream.") (license license:expat))) -(define-public rust-nu-table-0.29 +(define-public rust-nu-table-0.31 (package (name "rust-nu-table") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-table" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1ihrr2406v5yjdfm699q6alx5bh49q8d04x1dzvn6qydgmf6r8z6")))) + (base32 "0sma2i78naf813kw3mlzzbvs27fhz9z8flv7iqgk9pf52g4b6w0p")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-ansi-term" ,rust-nu-ansi-term-0.29) + (("rust-nu-ansi-term" ,rust-nu-ansi-term-0.31) ("rust-regex" ,rust-regex-1) ("rust-unicode-width" ,rust-unicode-width-0.1)))) (home-page "https://www.nushell.sh") @@ -2165,17 +2224,17 @@ Nushell.") (description "Nushell table printing") (license license:expat))) -(define-public rust-nu-test-support-0.29 +(define-public rust-nu-test-support-0.31 (package (name "rust-nu-test-support") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) (uri (crate-uri "nu-test-support" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0dlmhrskpdp82a6064srx1c4bqvfz66madx2i6cgxg56d7x38km6")))) + (base32 "0n5crvk40vy28f81lp5dyj9clfmslc9al5dvrq3b0gqz11d5y2ab")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -2187,10 +2246,10 @@ Nushell.") ("rust-glob" ,rust-glob-0.3) ("rust-hamcrest2" ,rust-hamcrest2-0.3) ("rust-indexmap" ,rust-indexmap-1) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.31) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-tempfile" ,rust-tempfile-3)))) (home-page "https://www.nushell.sh") @@ -2199,10 +2258,10 @@ Nushell.") tests.") (license license:expat))) -(define-public rust-nu-value-ext-0.29 +(define-public rust-nu-value-ext-0.31 (package (name "rust-nu-value-ext") - (version "0.29.0") + (version "0.31.0") (source (origin (method url-fetch) @@ -2210,16 +2269,16 @@ tests.") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1riq3xg6cqwrfb55bwva13m5dn4d7d71g2825dn7z2i96f6vylwi")))) + (base32 "0wy0zs76f1k0xlm8s7fw34v7rqc592ggzvdgh17fjh4ynnhvr42y")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-indexmap" ,rust-indexmap-1) ("rust-itertools" ,rust-itertools-0.10) - ("rust-nu-errors" ,rust-nu-errors-0.29) - ("rust-nu-protocol" ,rust-nu-protocol-0.29) - ("rust-nu-source" ,rust-nu-source-0.29) + ("rust-nu-errors" ,rust-nu-errors-0.31) + ("rust-nu-protocol" ,rust-nu-protocol-0.31) + ("rust-nu-source" ,rust-nu-source-0.31) ("rust-num-traits" ,rust-num-traits-0.2)))) (home-page "https://www.nushell.sh") (synopsis "@code{Extension} traits for values in Nushell") -- cgit v1.2.3