From b95a9ff8fd2a2b87d41cdbe7532188b6bd27fd81 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 16 Feb 2021 23:32:58 +0100 Subject: gnu: nushell: Update to 0.27.0. * gnu/packages/shells.scm (nushell): Update to 0.27.0. (rust-nu-cli-0.27): (rust-nu-command-0.27): (rust-nu-data-0.27): (rust-nu-engine-0.27): (rust-nu-errors-0.27): (rust-nu-json-0.27): (rust-nu-parser-0.27): (rust-nu-plugin-0.27): (rust-nu-plugin-binaryview-0.27): (rust-nu-plugin-chart-0.27): (rust-nu-plugin-fetch-0.27): (rust-nu-plugin-from-bson-0.27): (rust-nu-plugin-from-sqlite-0.27): (rust-nu-plugin-inc-0.27): (rust-nu-plugin-match-0.27): (rust-nu-plugin-post-0.27): (rust-nu-plugin-s3-0.27): (rust-nu-plugin-sys-0.27): (rust-nu-plugin-textview-0.27): (rust-nu-plugin-to-bson-0.27): (rust-nu-plugin-to-sqlite-0.27): (rust-nu-plugin-tree-0.27): (rust-nu-plugin-xpath-0.27): (rust-nu-protocol-0.27): (rust-nu-source-0.27): (rust-nu-stream-0.27): (rust-nu-test-support-0.27): (rust-nu-value-ext-0.27): New variables. (rust-nu-cli-0.26): (rust-nu-command-0.26): (rust-nu-data-0.26): (rust-nu-engine-0.26): (rust-nu-errors-0.26): (rust-nu-json-0.26): (rust-nu-parser-0.26): (rust-nu-plugin-0.26): (rust-nu-plugin-binaryview-0.26): (rust-nu-plugin-chart-0.26): (rust-nu-plugin-fetch-0.26): (rust-nu-plugin-from-bson-0.26): (rust-nu-plugin-from-sqlite-0.26): (rust-nu-plugin-inc-0.26): (rust-nu-plugin-match-0.26): (rust-nu-plugin-post-0.26): (rust-nu-plugin-s3-0.26): (rust-nu-plugin-sys-0.26): (rust-nu-plugin-textview-0.26): (rust-nu-plugin-to-bson-0.26): (rust-nu-plugin-to-sqlite-0.26): (rust-nu-plugin-tree-0.26): (rust-nu-plugin-xpath-0.26): (rust-nu-protocol-0.26): (rust-nu-source-0.26): (rust-nu-stream-0.26): (rust-nu-test-support-0.26): (rust-nu-value-ext-0.26): Remove variables. --- gnu/packages/shells.scm | 669 ++++++++++++++++++++++++------------------------ 1 file changed, 335 insertions(+), 334 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 03a094945c..8a62105e22 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -938,98 +938,94 @@ (define-public gash-utils (license license:gpl3+))) (define-public nushell - ;; Regular 0.26.0 release has an issue with rust-sysinfo. Use a later - ;; commit including the patches fixing it. - (let ((commit "30833468844eca336e24e02c3304a0245b5760b5") - (revision "0")) - (package - (name "nushell") - (version (git-version "0.26.0" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nushell/nushell.git") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19miwximiqh9j7cjh2f72c38a06d0zvd9fxa7m8aaz8cbcmnsrjp")))) - (build-system cargo-build-system) - (arguments - `(#:rust ,rust-1.47 - #:tests? #false ;missing files - #:features '("extra") - #:cargo-inputs - (("rust-clap" ,rust-clap-2) - ("rust-ctrlc" ,rust-ctrlc-3) - ("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.26) - ("rust-nu-command" ,rust-nu-command-0.26) - ("rust-nu-data" ,rust-nu-data-0.26) - ("rust-nu-engine" ,rust-nu-engine-0.26) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-parser" ,rust-nu-parser-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) - ("rust-nu-plugin-binaryview" ,rust-nu-plugin-binaryview-0.26) - ("rust-nu-plugin-chart" ,rust-nu-plugin-chart-0.26) - ("rust-nu-plugin-fetch" ,rust-nu-plugin-fetch-0.26) - ("rust-nu-plugin-from-bson" ,rust-nu-plugin-from-bson-0.26) - ("rust-nu-plugin-from-sqlite" ,rust-nu-plugin-from-sqlite-0.26) - ("rust-nu-plugin-inc" ,rust-nu-plugin-inc-0.26) - ("rust-nu-plugin-match" ,rust-nu-plugin-match-0.26) - ("rust-nu-plugin-post" ,rust-nu-plugin-post-0.26) - ("rust-nu-plugin-ps" ,rust-nu-plugin-ps-0.26) - ("rust-nu-plugin-s3" ,rust-nu-plugin-s3-0.26) - ("rust-nu-plugin-selector" ,rust-nu-plugin-selector-0.26) - ("rust-nu-plugin-start" ,rust-nu-plugin-start-0.26) - ("rust-nu-plugin-sys" ,rust-nu-plugin-sys-0.26) - ("rust-nu-plugin-textview" ,rust-nu-plugin-textview-0.26) - ("rust-nu-plugin-to-bson" ,rust-nu-plugin-to-bson-0.26) - ("rust-nu-plugin-to-sqlite" ,rust-nu-plugin-to-sqlite-0.26) - ("rust-nu-plugin-tree" ,rust-nu-plugin-tree-0.26) - ("rust-nu-plugin-xpath" ,rust-nu-plugin-xpath-0.26) - ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4)) - #:cargo-development-inputs - (("rust-dunce" ,rust-dunce-1) - ("rust-nu-test-support" ,rust-nu-test-support-0.26)))) - (native-inputs - `(("pkg-config" ,pkg-config) - ("python" ,python))) - (inputs - `(("curl" ,curl) - ("libgit2" ,libgit2) - ("libx11" ,libx11) - ("libxcb" ,libxcb) - ("openssl" ,openssl) - ("zlib" ,zlib))) - (home-page "https://www.nushell.sh") - (synopsis "Shell that understands the structure of the data") - (description - "Nu draws inspiration from projects like PowerShell, functional + (package + (name "nushell") + (version "0.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nushell/nushell.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gi477kfin9vpi7cmijqgbshm54r2winp4pkravrd7v3pqw0isrr")))) + (build-system cargo-build-system) + (arguments + `(#:rust ,rust-1.47 + #:tests? #false ;missing files + #:features '("extra") + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-ctrlc" ,rust-ctrlc-3) + ("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.27) + ("rust-nu-command" ,rust-nu-command-0.27) + ("rust-nu-data" ,rust-nu-data-0.27) + ("rust-nu-engine" ,rust-nu-engine-0.27) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-parser" ,rust-nu-parser-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) + ("rust-nu-plugin-binaryview" ,rust-nu-plugin-binaryview-0.27) + ("rust-nu-plugin-chart" ,rust-nu-plugin-chart-0.27) + ("rust-nu-plugin-fetch" ,rust-nu-plugin-fetch-0.27) + ("rust-nu-plugin-from-bson" ,rust-nu-plugin-from-bson-0.27) + ("rust-nu-plugin-from-sqlite" ,rust-nu-plugin-from-sqlite-0.27) + ("rust-nu-plugin-inc" ,rust-nu-plugin-inc-0.27) + ("rust-nu-plugin-match" ,rust-nu-plugin-match-0.27) + ("rust-nu-plugin-post" ,rust-nu-plugin-post-0.27) + ("rust-nu-plugin-ps" ,rust-nu-plugin-ps-0.27) + ("rust-nu-plugin-s3" ,rust-nu-plugin-s3-0.27) + ("rust-nu-plugin-selector" ,rust-nu-plugin-selector-0.27) + ("rust-nu-plugin-start" ,rust-nu-plugin-start-0.27) + ("rust-nu-plugin-sys" ,rust-nu-plugin-sys-0.27) + ("rust-nu-plugin-textview" ,rust-nu-plugin-textview-0.27) + ("rust-nu-plugin-to-bson" ,rust-nu-plugin-to-bson-0.27) + ("rust-nu-plugin-to-sqlite" ,rust-nu-plugin-to-sqlite-0.27) + ("rust-nu-plugin-tree" ,rust-nu-plugin-tree-0.27) + ("rust-nu-plugin-xpath" ,rust-nu-plugin-xpath-0.27) + ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4)) + #:cargo-development-inputs + (("rust-dunce" ,rust-dunce-1) + ("rust-nu-test-support" ,rust-nu-test-support-0.27)))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("python" ,python))) + (inputs + `(("curl" ,curl) + ("libgit2" ,libgit2) + ("libx11" ,libx11) + ("libxcb" ,libxcb) + ("openssl" ,openssl) + ("zlib" ,zlib))) + (home-page "https://www.nushell.sh") + (synopsis "Shell that understands the structure of the data") + (description + "Nu draws inspiration from projects like PowerShell, functional programming languages, and modern CLI tools. Rather than thinking of files and services as raw streams of text, Nu looks at each input as something with structure. For example, when you list the contents of a directory, what you get back is a table of rows, where each row represents an item in that directory. These values can be piped through a series of steps, in a series of commands called a ``pipeline''.") - (license license:expat)))) + (license license:expat))) -(define-public rust-nu-cli-0.26 +(define-public rust-nu-cli-0.27 (package (name "rust-nu-cli") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-cli" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1cm560qksr7j55kwfxldfp9ry25dbwnw6l3lmm3pbc0hfwdp1w0r")))) + (base32 "0kj0n4lkzmscvya1m5psf1n3ijpzxn4avw2a71rqgcdjyk3phahb")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1041,8 +1037,8 @@ (define-public rust-nu-cli-0.26 ("rust-base64" ,rust-base64-0.13) ("rust-bigdecimal" ,rust-bigdecimal-0.2) ("rust-byte-unit" ,rust-byte-unit-4) - ("rust-bytes" ,rust-bytes-0.5) - ("rust-calamine" ,rust-calamine-0.16) + ("rust-bytes" ,rust-bytes-1) + ("rust-calamine" ,rust-calamine-0.17) ("rust-chrono" ,rust-chrono-0.4) ("rust-chrono-tz" ,rust-chrono-tz-0.5) ("rust-clap" ,rust-clap-2) @@ -1072,19 +1068,19 @@ (define-public rust-nu-cli-0.26 ("rust-lazy-static" ,rust-lazy-static-1) ("rust-log" ,rust-log-0.4) ("rust-meval" ,rust-meval-0.2) - ("rust-nu-command" ,rust-nu-command-0.26) - ("rust-nu-data" ,rust-nu-data-0.26) - ("rust-nu-engine" ,rust-nu-engine-0.26) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-json" ,rust-nu-json-0.26) - ("rust-nu-parser" ,rust-nu-parser-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-stream" ,rust-nu-stream-0.26) - ("rust-nu-table" ,rust-nu-table-0.26) - ("rust-nu-test-support" ,rust-nu-test-support-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-command" ,rust-nu-command-0.27) + ("rust-nu-data" ,rust-nu-data-0.27) + ("rust-nu-engine" ,rust-nu-engine-0.27) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-json" ,rust-nu-json-0.27) + ("rust-nu-parser" ,rust-nu-parser-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-stream" ,rust-nu-stream-0.27) + ("rust-nu-table" ,rust-nu-table-0.27) + ("rust-nu-test-support" ,rust-nu-test-support-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-format" ,rust-num-format-0.4) ("rust-num-traits" ,rust-num-traits-0.2) @@ -1093,9 +1089,10 @@ (define-public rust-nu-cli-0.26 ("rust-pretty-hex" ,rust-pretty-hex-0.2) ("rust-ptree" ,rust-ptree-0.3) ("rust-query-interface" ,rust-query-interface-0.3) - ("rust-quick-xml" ,rust-quick-xml-0.20) - ("rust-quickcheck-macros" ,rust-quickcheck-macros-0.9) - ("rust-rand" ,rust-rand-0.7) + ("rust-quick-xml" ,rust-quick-xml-0.21) + ("rust-quickcheck" ,rust-quickcheck-1) + ("rust-quickcheck-macros" ,rust-quickcheck-macros-1) + ("rust-rand" ,rust-rand-0.8) ("rust-rayon" ,rust-rayon-1) ("rust-regex" ,rust-regex-1) ("rust-roxmltree" ,rust-roxmltree-0.14) @@ -1116,7 +1113,7 @@ (define-public rust-nu-cli-0.26 ("rust-sxd-document" ,rust-sxd-document-0.3) ("rust-sxd-xpath" ,rust-sxd-xpath-0.4) ("rust-tempfile" ,rust-tempfile-3) - ("rust-term" ,rust-term-0.6) + ("rust-term" ,rust-term-0.7) ("rust-term-size" ,rust-term-size-0.3) ("rust-termcolor" ,rust-termcolor-1) ("rust-titlecase" ,rust-titlecase-1) @@ -1125,7 +1122,7 @@ (define-public rust-nu-cli-0.26 ("rust-umask" ,rust-umask-1) ("rust-unicode-segmentation" ,rust-unicode-segmentation-1) ("rust-url" ,rust-url-2) - ("rust-users" ,rust-users-0.10) + ("rust-users" ,rust-users-0.11) ("rust-uuid" ,rust-uuid-0.8) ("rust-which" ,rust-which-4) ("rust-zip" ,rust-zip-0.5)))) @@ -1134,17 +1131,17 @@ (define-public rust-nu-cli-0.26 (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-command-0.26 +(define-public rust-nu-command-0.27 (package (name "rust-nu-command") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-command" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0kqip12aw38c6wa9blzmk4xyndjgm4k23iiaw2187vsanh0h53q7")))) + (base32 "16syx1sb3bj4hdh1l294byqqzbrgm24jp6h339rf9sn4k1m9fwd3")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1156,8 +1153,8 @@ (define-public rust-nu-command-0.26 ("rust-base64" ,rust-base64-0.13) ("rust-bigdecimal" ,rust-bigdecimal-0.2) ("rust-byte-unit" ,rust-byte-unit-4) - ("rust-bytes" ,rust-bytes-0.5) - ("rust-calamine" ,rust-calamine-0.16) + ("rust-bytes" ,rust-bytes-1) + ("rust-calamine" ,rust-calamine-0.17) ("rust-chrono" ,rust-chrono-0.4) ("rust-chrono-tz" ,rust-chrono-tz-0.5) ("rust-clap" ,rust-clap-2) @@ -1187,18 +1184,19 @@ (define-public rust-nu-command-0.26 ("rust-lazy-static" ,rust-lazy-static-1) ("rust-log" ,rust-log-0.4) ("rust-meval" ,rust-meval-0.2) - ("rust-nu-data" ,rust-nu-data-0.26) - ("rust-nu-engine" ,rust-nu-engine-0.26) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-json" ,rust-nu-json-0.26) - ("rust-nu-parser" ,rust-nu-parser-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-stream" ,rust-nu-stream-0.26) - ("rust-nu-table" ,rust-nu-table-0.26) - ("rust-nu-test-support" ,rust-nu-test-support-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-data" ,rust-nu-data-0.27) + ("rust-nu-engine" ,rust-nu-engine-0.27) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-json" ,rust-nu-json-0.27) + ("rust-nu-parser" ,rust-nu-parser-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-stream" ,rust-nu-stream-0.27) + ("rust-nu-table" ,rust-nu-table-0.27) + ("rust-nu-test-support" + ,rust-nu-test-support-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-format" ,rust-num-format-0.4) ("rust-num-traits" ,rust-num-traits-0.2) @@ -1207,14 +1205,14 @@ (define-public rust-nu-command-0.26 ("rust-pretty-hex" ,rust-pretty-hex-0.2) ("rust-ptree" ,rust-ptree-0.3) ("rust-query-interface" ,rust-query-interface-0.3) - ("rust-quick-xml" ,rust-quick-xml-0.20) + ("rust-quick-xml" ,rust-quick-xml-0.21) ("rust-rand" ,rust-rand-0.7) ("rust-rayon" ,rust-rayon-1) ("rust-regex" ,rust-regex-1) ("rust-roxmltree" ,rust-roxmltree-0.14) ("rust-rusqlite" ,rust-rusqlite-0.24) ("rust-rust-embed" ,rust-rust-embed-5) - ("rust-rustyline" ,rust-rustyline-6) + ("rust-rustyline" ,rust-rustyline-7) ("rust-serde" ,rust-serde-1) ("rust-serde-bytes" ,rust-serde-bytes-0.11) ("rust-serde-ini" ,rust-serde-ini-0.2) @@ -1228,7 +1226,7 @@ (define-public rust-nu-command-0.26 ("rust-sxd-document" ,rust-sxd-document-0.3) ("rust-sxd-xpath" ,rust-sxd-xpath-0.4) ("rust-tempfile" ,rust-tempfile-3) - ("rust-term" ,rust-term-0.6) + ("rust-term" ,rust-term-0.7) ("rust-term-size" ,rust-term-size-0.3) ("rust-termcolor" ,rust-termcolor-1) ("rust-titlecase" ,rust-titlecase-1) @@ -1237,7 +1235,7 @@ (define-public rust-nu-command-0.26 ("rust-umask" ,rust-umask-1) ("rust-unicode-segmentation" ,rust-unicode-segmentation-1) ("rust-url" ,rust-url-2) - ("rust-users" ,rust-users-0.10) + ("rust-users" ,rust-users-0.11) ("rust-uuid" ,rust-uuid-0.8) ("rust-which" ,rust-which-4) ("rust-zip" ,rust-zip-0.5)))) @@ -1246,17 +1244,17 @@ (define-public rust-nu-command-0.26 (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-data-0.26 +(define-public rust-nu-data-0.27 (package (name "rust-nu-data") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-data" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1jmicfs49laczgvif5axv2gb0c52hrfxvf3ywi7iinr7n8h1sfpx")))) + (base32 "0k024pgzq3r6rh3j3d3pnsnsg5vnz6w21g7xabsfm1ylv074d8i9")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1271,12 +1269,12 @@ (define-public rust-nu-data-0.26 ("rust-getset" ,rust-getset-0.1) ("rust-indexmap" ,rust-indexmap-1) ("rust-log" ,rust-log-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-table" ,rust-nu-table-0.26) - ("rust-nu-test-support" ,rust-nu-test-support-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-table" ,rust-nu-table-0.27) + ("rust-nu-test-support" ,rust-nu-test-support-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-format" ,rust-num-format-0.4) ("rust-num-traits" ,rust-num-traits-0.2) @@ -1284,23 +1282,23 @@ (define-public rust-nu-data-0.26 ("rust-query-interface" ,rust-query-interface-0.3) ("rust-serde" ,rust-serde-1) ("rust-toml" ,rust-toml-0.5) - ("rust-users" ,rust-users-0.10)))) + ("rust-users" ,rust-users-0.11)))) (home-page "https://www.nushell.sh") (synopsis "CLI for nushell") (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-engine-0.26 +(define-public rust-nu-engine-0.27 (package (name "rust-nu-engine") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-engine" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0fbvv8dvxzfbkyvy8iyis9xvijv794lpjfp0hrl25s0lrjykbji0")))) + (base32 "14463wafn4am6c7sc942zqjs4ckd3yxm8l786qhhkxw7gwq7m76s")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1323,14 +1321,14 @@ (define-public rust-nu-engine-0.26 ("rust-indexmap" ,rust-indexmap-1) ("rust-itertools" ,rust-itertools-0.10) ("rust-log" ,rust-log-0.4) - ("rust-nu-data" ,rust-nu-data-0.26) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-parser" ,rust-nu-parser-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-stream" ,rust-nu-stream-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-data" ,rust-nu-data-0.27) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-parser" ,rust-nu-parser-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-stream" ,rust-nu-stream-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-parking-lot" ,rust-parking-lot-0.11) ("rust-rayon" ,rust-rayon-1) ("rust-serde" ,rust-serde-1) @@ -1339,23 +1337,23 @@ (define-public rust-nu-engine-0.26 ("rust-term-size" ,rust-term-size-0.3) ("rust-termcolor" ,rust-termcolor-1) ("rust-umask" ,rust-umask-1) - ("rust-users" ,rust-users-0.10)))) + ("rust-users" ,rust-users-0.11)))) (home-page "https://www.nushell.sh") (synopsis "Core commands for nushell") (description "Core commands for nushell") (license license:expat))) -(define-public rust-nu-errors-0.26 +(define-public rust-nu-errors-0.27 (package (name "rust-nu-errors") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-errors" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0q6cbb02m9cfvjc7fcfzj814iz9ab2j2m3c3qwqskkrig4cwz3sl")))) + (base32 "0j9w8fyjgrb602v35871vychh2b9m3bzjmmk8jgcbm41458ji5sl")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1366,7 +1364,7 @@ (define-public rust-nu-errors-0.26 ("rust-derive-new" ,rust-derive-new-0.5) ("rust-getset" ,rust-getset-0.1) ("rust-glob" ,rust-glob-0.3) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-serde" ,rust-serde-1) @@ -1378,17 +1376,17 @@ (define-public rust-nu-errors-0.26 (description "Core error subsystem for Nushell") (license license:expat))) -(define-public rust-nu-json-0.26 +(define-public rust-nu-json-0.27 (package (name "rust-nu-json") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-json" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "085k9p41pqzivw6z6rxxzr8haagwqi795a2dh084qs99cyi5hj2n")))) + (base32 "0s3bv8hcqfric8ib9da71cjfa298pn3154lyziv55yg2wrmqn9kr")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1402,17 +1400,17 @@ (define-public rust-nu-json-0.26 (description "This package is a fork of @code{serde-hjson}.") (license license:expat))) -(define-public rust-nu-parser-0.26 +(define-public rust-nu-parser-0.27 (package (name "rust-nu-parser") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-parser" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "05wns7z1xifdlypklar2hb2q9515lrlwx5jl69aw3k877nmwg07p")))) + (base32 "0jyl29c16hmyfbmp4w0yay441dc3c54hwknqsaq7bppg5kyxhvx9")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1423,11 +1421,12 @@ (define-public rust-nu-parser-0.26 ("rust-derive-is-enum-variant" ,rust-derive-is-enum-variant-0.1) ("rust-dunce" ,rust-dunce-1) ("rust-indexmap" ,rust-indexmap-1) + ("rust-itertools" ,rust-itertools-0.10) ("rust-log" ,rust-log-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-test-support" ,rust-nu-test-support-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-test-support" ,rust-nu-test-support-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-serde" ,rust-serde-1) @@ -1438,10 +1437,10 @@ (define-public rust-nu-parser-0.26 (description "Nushell parser") (license license:expat))) -(define-public rust-nu-plugin-0.26 +(define-public rust-nu-plugin-0.27 (package (name "rust-nu-plugin") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) @@ -1449,18 +1448,18 @@ (define-public rust-nu-plugin-0.26 (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1n7lf9d0dkjdnmwv60szrz22z47aq3yl946f9y20dnk7xy798bv6")))) + (base32 "1k5hjaisig9syx442qslnipq6anphi67wvqhig1l6alwf95d7mps")))) (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.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-test-support" ,rust-nu-test-support-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-test-support" ,rust-nu-test-support-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-serde" ,rust-serde-1) ("rust-serde-json" ,rust-serde-json-1)))) @@ -1469,29 +1468,29 @@ (define-public rust-nu-plugin-0.26 (description "Nushell Plugin") (license license:expat))) -(define-public rust-nu-plugin-binaryview-0.26 +(define-public rust-nu-plugin-binaryview-0.27 (package (name "rust-nu-plugin-binaryview") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_binaryview" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1ngnkpcl6gqi3rp2k666rfq35hlqhii3jlg0yfi42inxsh5mxgpf")))) + (base32 "0dqh50v3whd9vdcjyyymwh9jcxjrx73ixzdwp3ga8vgcg4fsy2xp")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-ansi-term" ,rust-ansi-term-0.12) - ("rust-crossterm" ,rust-crossterm-0.18) + ("rust-crossterm" ,rust-crossterm-0.19) ("rust-image" ,rust-image-0.22) ("rust-neso" ,rust-neso-0.5) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-pretty-hex" ,rust-pretty-hex-0.2) ("rust-rawkey" ,rust-rawkey-0.1)))) (home-page "https://www.nushell.sh") @@ -1500,29 +1499,29 @@ (define-public rust-nu-plugin-binaryview-0.26 "This package provides a binary viewer plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-chart-0.26 +(define-public rust-nu-plugin-chart-0.27 (package (name "rust-nu-plugin-chart") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_chart" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1pyccvidzqgz7yp16jdjgyb708cimx0j334wzi8ij8l7x395qwn3")))) + (base32 "14bh7qa2a6hwrggcb9qi92d9dqdrsr6hz5bhplbb8ym9yhr1b43k")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-crossterm" ,rust-crossterm-0.19) - ("rust-nu-cli" ,rust-nu-cli-0.26) - ("rust-nu-data" ,rust-nu-data-0.26) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-cli" ,rust-nu-cli-0.27) + ("rust-nu-data" ,rust-nu-data-0.27) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-tui" ,rust-tui-0.14)))) (home-page "https://www.nushell.sh") (synopsis "Plugin to display charts") @@ -1530,27 +1529,27 @@ (define-public rust-nu-plugin-chart-0.26 "This package provides a plugin to display charts in Nushell.") (license license:expat))) -(define-public rust-nu-plugin-fetch-0.26 +(define-public rust-nu-plugin-fetch-0.27 (package (name "rust-nu-plugin-fetch") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_fetch" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0f61f3n5wdzqwfi94ym8j60sd1wah1z1gdyhyg60fbyygd9scm4r")))) + (base32 "0cyn462vpb1njhcdmad63c672xc3si2l4kvgbjf7z57zsg4ldf1i")))) (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.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-surf" ,rust-surf-1) ("rust-url" ,rust-url-2)))) (home-page "https://www.nushell.sh") @@ -1558,28 +1557,28 @@ (define-public rust-nu-plugin-fetch-0.26 (description "This package provides a URL fetch plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-from-bson-0.26 +(define-public rust-nu-plugin-from-bson-0.27 (package (name "rust-nu-plugin-from-bson") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_from_bson" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1ywvxlx1i44yz7md5wbd4sadbh2j6nah6ccfpkrls0gjmagqsbvj")))) + (base32 "02r66fm1ih690d5z9il4lawnk53vv51d6cxga7s4bj68yn7b5sig")))) (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.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-traits" ,rust-num-traits-0.2)))) (home-page "https://www.nushell.sh") (synopsis "Converter plugin to the bson format for Nushell") @@ -1588,27 +1587,27 @@ (define-public rust-nu-plugin-from-bson-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-plugin-from-sqlite-0.26 +(define-public rust-nu-plugin-from-sqlite-0.27 (package (name "rust-nu-plugin-from-sqlite") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_from_sqlite" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0898ar0q2r0p5f8vr6w290b3wfyq2wrlygz7rhf8qfcxc3mdxxi2")))) + (base32 "1l5li343ba8g6cvckjby78vl9d8nj5n679asdh103gr2y8pbrk4b")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.2) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-rusqlite" ,rust-rusqlite-0.24) ("rust-tempfile" ,rust-tempfile-3)))) @@ -1619,28 +1618,28 @@ (define-public rust-nu-plugin-from-sqlite-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-plugin-inc-0.26 +(define-public rust-nu-plugin-inc-0.27 (package (name "rust-nu-plugin-inc") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_inc" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1v72zaqhzf37x3sba43c6pry75v4aacqsk4mw7fnmx6mfzbpjdn6")))) + (base32 "0rpgbxk79wgg3wks9w1nz0pala2arq9kxrqm971ph10gl398dah0")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-test-support" ,rust-nu-test-support-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) - ("rust-semver" ,rust-semver-0.10)))) + (("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-test-support" ,rust-nu-test-support-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) + ("rust-semver" ,rust-semver-0.11)))) (home-page "https://www.nushell.sh") (synopsis "Version incrementer plugin for Nushell") (description @@ -1648,25 +1647,25 @@ (define-public rust-nu-plugin-inc-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-plugin-match-0.26 +(define-public rust-nu-plugin-match-0.27 (package (name "rust-nu-plugin-match") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_match" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0iifbi739x077wwvjgdjw2h7cr149sznvjl6c5m06llmvniga4sa")))) + (base32 "0v8rdpxqf414mbz2yqgh6cqfi3cszir4mh6qdgijll1ywjib1xag")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + (("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-regex" ,rust-regex-1)))) (home-page "https://www.nushell.sh") (synopsis "Regex match plugin for Nushell") @@ -1674,57 +1673,57 @@ (define-public rust-nu-plugin-match-0.26 "This package provides a regex match plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-post-0.26 +(define-public rust-nu-plugin-post-0.27 (package (name "rust-nu-plugin-post") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_post" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "05frjzgrci7f9fvfqls3067ipnn2ihqxydimi7kbwajs0kzj7b45")))) + (base32 "0i2jd19rw4dpi44qfw1yavzyhljqxcr4angyk4q3rn49isdz2njg")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-base64" ,rust-base64-0.12) + (("rust-base64" ,rust-base64-0.13) ("rust-futures" ,rust-futures-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-serde-json" ,rust-serde-json-1) ("rust-surf" ,rust-surf-1) ("rust-url" ,rust-url-2)))) (home-page "https://www.nushell.sh") - (synopsis "HTTP post plugin for Nushell") - (description "This package is an HTTP post plugin for Nushell.") + (synopsis "HTTP POST plugin for Nushell") + (description "This package is an HTTP POST plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-ps-0.26 +(define-public rust-nu-plugin-ps-0.27 (package (name "rust-nu-plugin-ps") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_ps" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1znj1hjy2c2bj14hjx6yh4r3dknb7qflza1vmq5x98vnvf04i8c4")))) + (base32 "1xh55xi1w8393dyk9vp8l74r73pva4rbl5rrz4flx692vw5i40f5")))) (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.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-sysinfo" ,rust-sysinfo-0.16)))) (home-page "https://www.nushell.sh") @@ -1733,78 +1732,80 @@ (define-public rust-nu-plugin-ps-0.26 "This package provides a process list plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-s3-0.26 +(define-public rust-nu-plugin-s3-0.27 (package (name "rust-nu-plugin-s3") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_s3" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0978rsy95qdvwnh5m2bl8ypl7rb7c0dv3zcnd986jyq3n1ykqykj")))) + (base32 "0g8dx1llizvg98g9jw80iz2jpcnjq4zvw70drsllzlxygpap0rl5")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-futures" ,rust-futures-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-s3handler" ,rust-s3handler-0.5)))) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("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.26 +(define-public rust-nu-plugin-selector-0.27 (package (name "rust-nu-plugin-selector") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_selector" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0vcwa4g6j8w27g2m4wkk04gja2bw8s9m72v7hbcdmfncgq4cnjrw")))) + (base32 "1v674fkmdb2y28blhvlg0ryp6ric621sfl8law1msvqxq4c7jn84")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-nipper" ,rust-nipper-0.1) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26)))) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27)))) (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.26 +(define-public rust-nu-plugin-start-0.27 (package (name "rust-nu-plugin-start") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_start" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0k7yqjrj7ydihcpjm8wgf3v4n8w16rawvxk9hdfysgmmvzw29kk8")))) + (base32 "0i98qchvslw0chbzzscfnib1yf1w6wfi1bbp9766hjldnvac0rik")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-glob" ,rust-glob-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-open" ,rust-open-1) ("rust-url" ,rust-url-2)))) (home-page "https://www.nushell.sh") @@ -1814,10 +1815,10 @@ (define-public rust-nu-plugin-start-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-plugin-sys-0.26 +(define-public rust-nu-plugin-sys-0.27 (package (name "rust-nu-plugin-sys") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) @@ -1825,17 +1826,17 @@ (define-public rust-nu-plugin-sys-0.26 (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "02jddzflzb173g8s6026vi0vk887h4p1q1a2cmc5g31r20z6h61p")))) + (base32 "1zfyjdkga65ns8qdhxzjaj4b5q76pvqkv98sa3cj4sx4wl8q9zrg")))) (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.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-sysinfo" ,rust-sysinfo-0.16)))) (home-page "https://www.nushell.sh") @@ -1843,28 +1844,28 @@ (define-public rust-nu-plugin-sys-0.26 (description "This package provides a system info plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-textview-0.26 +(define-public rust-nu-plugin-textview-0.27 (package (name "rust-nu-plugin-textview") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_textview" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "12zxphslc56n7s60i8603pq4g9iji58fg5zjvx2g6b06h83070qv")))) + (base32 "1izjv2jwbpaw9y01wdhsv3fnyhrhn0rdx3nr86i9rab1xcgnxrny")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("bat" ,bat) ("rust-ansi-term" ,rust-ansi-term-0.12) - ("rust-nu-data" ,rust-nu-data-0.26) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-data" ,rust-nu-data-0.27) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-term-size" ,rust-term-size-0.3) ("rust-url" ,rust-url-2)))) (home-page "https://www.nushell.sh") @@ -1873,27 +1874,27 @@ (define-public rust-nu-plugin-textview-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-plugin-to-bson-0.26 +(define-public rust-nu-plugin-to-bson-0.27 (package (name "rust-nu-plugin-to-bson") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_to_bson" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1vpd5j2z2jjqbf8ks6df76xr86rim1wr7x3y1m77c4v1icsnxgzs")))) + (base32 "1k5r4gwn5h48ix4wqyfj4lcymg61ssc5mw8zy7x6s0w2daj58f85")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bson" ,rust-bson-0.14) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-traits" ,rust-num-traits-0.2)))) (home-page "https://www.nushell.sh") (synopsis "Converter plugin to the bson format for Nushell") @@ -1902,27 +1903,27 @@ (define-public rust-nu-plugin-to-bson-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-plugin-to-sqlite-0.26 +(define-public rust-nu-plugin-to-sqlite-0.27 (package (name "rust-nu-plugin-to-sqlite") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_to_sqlite" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "05z4cwaq55rfwdvr3vr8kqdyqbzpkbrdpz1mp4d9fa9b273xs393")))) + (base32 "1n5xy6yfd5vgqz1vj4p7nrb200m8akcfhpqp5hjbn79c7w4nn5d1")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-hex" ,rust-hex-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-rusqlite" ,rust-rusqlite-0.24) ("rust-tempfile" ,rust-tempfile-3)))) @@ -1933,26 +1934,26 @@ (define-public rust-nu-plugin-to-sqlite-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-plugin-tree-0.26 +(define-public rust-nu-plugin-tree-0.27 (package (name "rust-nu-plugin-tree") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_tree" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1q80fr430igfw9a4qa5l3ydw6xhppzhqf2i6pvfjmdgf2vhflpdr")))) + (base32 "102zhj8sv0mybv0wnljsw48n0p6y5wx7lzv7w96kflxna40q1dm4")))) (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.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-ptree" ,rust-ptree-0.3)))) (home-page "https://www.nushell.sh") (synopsis "Tree viewer plugin for Nushell") @@ -1960,27 +1961,27 @@ (define-public rust-nu-plugin-tree-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-plugin-xpath-0.26 +(define-public rust-nu-plugin-xpath-0.27 (package (name "rust-nu-plugin-xpath") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_xpath" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0sp3q5wlmwpzsx9751wqis2xxshck0fl6gpl1jckwivg8s9glbbg")))) + (base32 "1x9zn2xyqkyg0pjl8kzd9da3gmhknlrdga02rzyssnc0kjagkm7v")))) (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.26) - ("rust-nu-plugin" ,rust-nu-plugin-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-plugin" ,rust-nu-plugin-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-sxd-document" ,rust-sxd-document-0.3) ("rust-sxd-xpath" ,rust-sxd-xpath-0.4)))) (home-page "https://www.nushell.sh") @@ -1988,17 +1989,17 @@ (define-public rust-nu-plugin-xpath-0.26 (description "Traverses XML") (license license:expat))) -(define-public rust-nu-protocol-0.26 +(define-public rust-nu-protocol-0.27 (package (name "rust-nu-protocol") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-protocol" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1s2lm9aydgcwi0h9jhpi9ba5i55k7iv70fpgl85cm7dlw4kyzjv0")))) + (base32 "1z6q6zdkhwx3axv5m788l4k8yds3zd161mwvmvaz0vzj6g10np51")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -2010,8 +2011,8 @@ (define-public rust-nu-protocol-0.26 ("rust-getset" ,rust-getset-0.1) ("rust-indexmap" ,rust-indexmap-1) ("rust-log" ,rust-log-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-num-integer" ,rust-num-integer-0.1) ("rust-num-traits" ,rust-num-traits-0.2) @@ -2025,17 +2026,17 @@ (define-public rust-nu-protocol-0.26 (description "Core values and protocols for Nushell") (license license:expat))) -(define-public rust-nu-source-0.26 +(define-public rust-nu-source-0.27 (package (name "rust-nu-source") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-source" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1sdmasal3qqcp8fjpqncppc81m0984bp528lb9zggipbxzjpvb3i")))) + (base32 "0dr8lssx8cf22cwrrjcpx4xlqxk8qv6nyar3i9jk218q34m6bgn2")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -2052,41 +2053,41 @@ (define-public rust-nu-source-0.26 Nushell.") (license license:expat))) -(define-public rust-nu-stream-0.26 +(define-public rust-nu-stream-0.27 (package (name "rust-nu-stream") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-stream" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1y7f28zxfrlhi9qrpbk6dpzb3wr6f59yhx3yim001796c1x6xlcs")))) + (base32 "1hz9n380rnvvg86qi9bfika6c702kn4b9ljsgcwrr984mm3vbb2n")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-futures" ,rust-futures-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26)))) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27)))) (home-page "https://www.nushell.sh") (synopsis "Nushell stream") (description "This package provides Nushell stream.") (license license:expat))) -(define-public rust-nu-table-0.26 +(define-public rust-nu-table-0.27 (package (name "rust-nu-table") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-table" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1kxgmngfzi13xr2r65f5mxy24a8d1d0xrhi9bfjp5955r8r09km4")))) + (base32 "1rmxic6vif8vb5klsvlida7p24nqbnmj1xclmg0p9a10bykzp4gp")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -2099,17 +2100,17 @@ (define-public rust-nu-table-0.26 (description "Nushell table printing") (license license:expat))) -(define-public rust-nu-test-support-0.26 +(define-public rust-nu-test-support-0.27 (package (name "rust-nu-test-support") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) (uri (crate-uri "nu-test-support" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0nlr9sqjiwviw15x76cc87n6366fxkxz1lsfh6m2ncca1zwgpa69")))) + (base32 "0hwiymqhh6x37bn0vnyi8rxzn6rpq561hxs80fw5qs4q3dkx74nv")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -2120,10 +2121,10 @@ (define-public rust-nu-test-support-0.26 ("rust-getset" ,rust-getset-0.1) ("rust-glob" ,rust-glob-0.3) ("rust-indexmap" ,rust-indexmap-1) - ("rust-nu-errors" ,rust-nu-errors-0.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.27) ("rust-num-bigint" ,rust-num-bigint-0.3) ("rust-tempfile" ,rust-tempfile-3)))) (home-page "https://www.nushell.sh") @@ -2132,10 +2133,10 @@ (define-public rust-nu-test-support-0.26 tests.") (license license:expat))) -(define-public rust-nu-value-ext-0.26 +(define-public rust-nu-value-ext-0.27 (package (name "rust-nu-value-ext") - (version "0.26.0") + (version "0.27.0") (source (origin (method url-fetch) @@ -2143,16 +2144,16 @@ (define-public rust-nu-value-ext-0.26 (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "12qwxhkxdxsg7q6kbsqg46127lsy150b53kpbly0s8cgwra3bhv5")))) + (base32 "11jj6v6i6hn66q9hbkj3vw5ccz3lkiypxcd1qg5qnlzxq8ba8mj1")))) (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.26) - ("rust-nu-protocol" ,rust-nu-protocol-0.26) - ("rust-nu-source" ,rust-nu-source-0.26) + ("rust-nu-errors" ,rust-nu-errors-0.27) + ("rust-nu-protocol" ,rust-nu-protocol-0.27) + ("rust-nu-source" ,rust-nu-source-0.27) ("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