[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
120/187: gnu: rust-cargo-edit-0.8: Move to rust-apps.scm.
From: |
guix-commits |
Subject: |
120/187: gnu: rust-cargo-edit-0.8: Move to rust-apps.scm. |
Date: |
Mon, 24 Oct 2022 10:58:21 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 09962d54c1c18c8893631613a3c84e910b98d968
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Oct 24 13:56:39 2022 +0300
gnu: rust-cargo-edit-0.8: Move to rust-apps.scm.
* gnu/packages/crates-io.scm (rust-cargo-edit-0.8): Move to ...
* gnu/packages/rust-apps.scm (rust-cargo-edit-0.8): ... here.
---
gnu/packages/crates-io.scm | 49 --------------------------------------------
gnu/packages/rust-apps.scm | 51 +++++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 50 insertions(+), 50 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 4e17efdf16..0e6ed24955 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -9344,55 +9344,6 @@ capabilities.")
the library crate of Cargo.")
(license (list license:expat license:asl2.0))))
-(define-public rust-cargo-edit-0.8
- (package
- (name "rust-cargo-edit")
- (version "0.8.0")
- (source (origin
- (method url-fetch)
- (uri (crate-uri "cargo-edit" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "0yk5f4qjzflfqzgfws9zifij2fqchc9q551m7ljznmjrhlif2yh4"))))
- (build-system cargo-build-system)
- (arguments
- `(#:skip-build? #t
- #:cargo-inputs
- (("rust-atty" ,rust-atty-0.2)
- ("rust-error-chain" ,rust-error-chain-0.12)
- ("rust-git2" ,rust-git2-0.13)
- ("rust-hex" ,rust-hex-0.4)
- ("rust-regex" ,rust-regex-1)
- ("rust-semver" ,rust-semver-1)
- ("rust-serde" ,rust-serde-1)
- ("rust-serde-derive" ,rust-serde-derive-1)
- ("rust-serde-json" ,rust-serde-json-1)
- ("rust-termcolor" ,rust-termcolor-1)
- ("rust-toml-edit" ,rust-toml-edit-0.3)
- ("rust-url" ,rust-url-2)
- ("rust-crates-index" ,rust-crates-index-0.17)
- ("rust-cargo-metadata" ,rust-cargo-metadata-0.14)
- ("rust-dirs-next" ,rust-dirs-next-2)
- ("rust-dunce" ,rust-dunce-1)
- ("rust-env-proxy" ,rust-env-proxy-0.4)
- ("rust-pathdiff" ,rust-pathdiff-0.2)
- ("rust-structopt" ,rust-structopt-0.3)
- ("rust-subprocess" ,rust-subprocess-0.2)
- ("rust-toml-edit" ,rust-toml-edit-0.3)
- ("rust-ureq" ,rust-ureq-1))
- #:cargo-development-inputs
- (("rust-assert-cmd" ,rust-assert-cmd-2)
- ("rust-assert-fs" ,rust-assert-fs-1)
- ("rust-predicates" ,rust-predicates-2)
- ("rust-pretty-assertions" ,rust-pretty-assertions-0.6))))
- (home-page "https://github.com/killercup/cargo-edit")
- (synopsis "Add and remove dependencies from the command line")
- (description
- "This package extends Cargo to allow you to add and remove dependencies
-by modifying your @file{Cargo.toml} file from the command line.")
- (license (list license:asl2.0 license:expat))))
-
(define-public rust-cargo-metadata-0.14
(package
(name "rust-cargo-metadata")
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index cdd01ad68b..d4f4413b07 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -13,7 +13,7 @@
;;; Copyright © 2021, 2022 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2021 Alexandru-Sergiu Marton <brown121407@posteo.ro>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
-;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
+;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com>
;;; Copyright © 2021 jgart <jgart@dismail.de>
;;; Copyright © 2021 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
@@ -890,6 +890,55 @@ browsers.")
(define-deprecated rust-swc-1 rust-swc)
+(define-public rust-cargo-edit-0.8
+ (package
+ (name "rust-cargo-edit")
+ (version "0.8.0")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "cargo-edit" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0yk5f4qjzflfqzgfws9zifij2fqchc9q551m7ljznmjrhlif2yh4"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-atty" ,rust-atty-0.2)
+ ("rust-error-chain" ,rust-error-chain-0.12)
+ ("rust-git2" ,rust-git2-0.13)
+ ("rust-hex" ,rust-hex-0.4)
+ ("rust-regex" ,rust-regex-1)
+ ("rust-semver" ,rust-semver-1)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-derive" ,rust-serde-derive-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-termcolor" ,rust-termcolor-1)
+ ("rust-toml-edit" ,rust-toml-edit-0.3)
+ ("rust-url" ,rust-url-2)
+ ("rust-crates-index" ,rust-crates-index-0.17)
+ ("rust-cargo-metadata" ,rust-cargo-metadata-0.14)
+ ("rust-dirs-next" ,rust-dirs-next-2)
+ ("rust-dunce" ,rust-dunce-1)
+ ("rust-env-proxy" ,rust-env-proxy-0.4)
+ ("rust-pathdiff" ,rust-pathdiff-0.2)
+ ("rust-structopt" ,rust-structopt-0.3)
+ ("rust-subprocess" ,rust-subprocess-0.2)
+ ("rust-toml-edit" ,rust-toml-edit-0.3)
+ ("rust-ureq" ,rust-ureq-1))
+ #:cargo-development-inputs
+ (("rust-assert-cmd" ,rust-assert-cmd-2)
+ ("rust-assert-fs" ,rust-assert-fs-1)
+ ("rust-predicates" ,rust-predicates-2)
+ ("rust-pretty-assertions" ,rust-pretty-assertions-0.6))))
+ (home-page "https://github.com/killercup/cargo-edit")
+ (synopsis "Add and remove dependencies from the command line")
+ (description
+ "This package extends Cargo to allow you to add and remove dependencies
+by modifying your @file{Cargo.toml} file from the command line.")
+ (license (list license:asl2.0 license:expat))))
+
(define-public git-interactive-rebase-tool
(package
(name "git-interactive-rebase-tool")
- 73/187: gnu: Remove rust-mockito-0.23., (continued)
- 73/187: gnu: Remove rust-mockito-0.23., guix-commits, 2022/10/24
- 78/187: gnu: Remove rust-rustc-ap-rustc-lexer-654., guix-commits, 2022/10/24
- 79/187: gnu: Remove rust-rusqlite-0.23., guix-commits, 2022/10/24
- 81/187: gnu: Remove rust-rpassword-3., guix-commits, 2022/10/24
- 90/187: gnu: Remove rust-s3handler-0.6., guix-commits, 2022/10/24
- 93/187: gnu: Remove rust-secp256k1-0.20., guix-commits, 2022/10/24
- 94/187: gnu: Remove rust-secrecy-0.6., guix-commits, 2022/10/24
- 101/187: gnu: Remove rust-static-assertions-0.3., guix-commits, 2022/10/24
- 102/187: gnu: Remove rust-stackvector-1., guix-commits, 2022/10/24
- 104/187: gnu: Remove rust-shader-version-0.6., guix-commits, 2022/10/24
- 120/187: gnu: rust-cargo-edit-0.8: Move to rust-apps.scm.,
guix-commits <=
- 124/187: gnu: Add rust-cargo-metadata-0.15., guix-commits, 2022/10/24
- 127/187: gnu: Add rust-darling-core-0.14., guix-commits, 2022/10/24
- 131/187: gnu: Add rust-derive-builder-macro-0.11., guix-commits, 2022/10/24
- 137/187: gnu: Add rust-smartstring-1., guix-commits, 2022/10/24
- 140/187: gnu: rust-assert-fs-1: Update to 1.0.7., guix-commits, 2022/10/24
- 103/187: gnu: Remove rust-shadow-rs-0.6., guix-commits, 2022/10/24
- 112/187: gnu: Remove rust-vecmath-1., guix-commits, 2022/10/24
- 118/187: gnu: Remove rust-tokio-named-pipes-0.1., guix-commits, 2022/10/24
- 122/187: gnu: rust-cargo-edit: Add missing inputs., guix-commits, 2022/10/24
- 126/187: gnu: Add rust-darling-0.14., guix-commits, 2022/10/24