diff --git a/gnu/packages/nushell.scm b/gnu/packages/nushell.scm index 119c276d43f..2dc552820d0 100644 --- a/gnu/packages/nushell.scm +++ b/gnu/packages/nushell.scm @@ -121,6 +121,29 @@ of commands called a ``pipeline''.") ;; Nushell plugins need to be built against the same nu-plugin protocol ;; version as nushell itself. +(define-public nu-plugin-inc + (package + (name "nu-plugin-inc") + (version "0.101.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "nu_plugin_inc" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "12kr3lnjhq6grdnhxrmlxgmvvgv7kc6fg18z6gfk2qim1sckikyd")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-nu-plugin" ,rust-nu-plugin-0.101) + ("rust-nu-protocol" ,rust-nu-protocol-0.101) + ("rust-semver" ,rust-semver-1)))) + (home-page + "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_inc") + (synopsis "Version incrementer plugin for Nushell") + (description + "This package provides a version incrementer plugin for Nushell.") + (license license:expat))) + (define-public nu-plugin-gstat (package (name "nu-plugin-gstat")