mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add rust-concat-string-1.
* gnu/packages/crates-io.scm (rust-concat-string-1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I05c4b9e5d4af472225722bc5f8b6bf01d62abdae
This commit is contained in:
parent
1a359b4392
commit
452632e9fa
1 changed files with 23 additions and 0 deletions
|
@ -47,6 +47,7 @@
|
|||
;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo>
|
||||
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2024 Murilo <murilo@disroot.org>
|
||||
;;; Copyright © 2025 Divya Ranjan Pattanaik <divya@subvertising.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -14559,6 +14560,28 @@ (define-public rust-concat-idents-1
|
|||
everywhere.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-concat-string-1
|
||||
(package
|
||||
(name "rust-concat-string")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "concat-string" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "02c6hfxsvs1ff2j58f3qzr526w1yg8d2nf6yyjv81ixgbz5vwfbl"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f)) ; Tests don't run with current versions of rust.
|
||||
(home-page "https://github.com/FaultyRAM/concat-string")
|
||||
(synopsis
|
||||
"Provides macros for concatenating string slices into owned strings")
|
||||
(description
|
||||
"This package provides macros for concatenating string slices into
|
||||
owned strings.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-concolor-0.0.11
|
||||
(package
|
||||
(name "rust-concolor")
|
||||
|
|
Loading…
Reference in a new issue