me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cargo-util-0.1.

* gnu/packages/crates-io.scm (rust-cargo-util-0.1): New variable.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
master
Paul Alesius 2023-02-08 14:22:07 -05:00 committed by Maxim Cournoyer
parent 864a7478e8
commit ebaff02352
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 20 additions and 0 deletions

View File

@ -31,6 +31,7 @@
;;; Copyright © 2022 ( <paren@disroot.org> ;;; Copyright © 2022 ( <paren@disroot.org>
;;; Copyright © 2022 Greg Hogan <code@greghogan.com> ;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com> ;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
;;; Copyright © 2022 Paul Alesius <paul@unnservice.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -9648,6 +9649,25 @@ optional dependency graph analysis.")
supported by Cargo.") supported by Cargo.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-cargo-util-0.1
(package
(name "rust-cargo-util")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "cargo-util" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1sz0gzcyp9ycb4zwj69qs9gd8kn9hv9nh2dq42c59x5xccqph755"))))
(build-system cargo-build-system)
(home-page "https://github.com/rust-lang/cargo")
(synopsis "Utilities for Cargo")
(description "Miscellaneous support code used by Cargo.")
(license (list license:expat license:asl2.0))))
(define-public rust-cassowary-0.3 (define-public rust-cassowary-0.3
(package (package
(name "rust-cassowary") (name "rust-cassowary")