mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: crates-io.scm: Sort packages alphabetically.
* gnu/packages/crates-io.scm: Sort packages alphabetically.
This commit is contained in:
parent
513a66c932
commit
96c71bffaa
1 changed files with 25 additions and 21 deletions
|
@ -22,27 +22,9 @@ (define-module (gnu packages crates-io)
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages))
|
||||
|
||||
(define-public rust-unicode-xid
|
||||
(package
|
||||
(name "rust-unicode-xid")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "unicode-xid" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1z57lqh4s18rr4x0j4fw4fmp9hf9346h0kmdgqsqx0fhjr3k0wpw"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page
|
||||
"https://github.com/unicode-rs/unicode-xid")
|
||||
(synopsis "Determine Unicode XID related properties")
|
||||
(description "Determine whether characters have the XID_Start
|
||||
or XID_Continue properties according to Unicode Standard Annex #31.")
|
||||
;; Dual licensed.
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
;;;
|
||||
;;; Please: Try to add new module packages in alphabetic order.
|
||||
;;;
|
||||
|
||||
(define-public rust-proc-macro2
|
||||
(package
|
||||
|
@ -90,3 +72,25 @@ (define-public rust-quote
|
|||
(description "Quasi-quoting macro quote!(...)")
|
||||
;; Dual licensed.
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-unicode-xid
|
||||
(package
|
||||
(name "rust-unicode-xid")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "unicode-xid" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1z57lqh4s18rr4x0j4fw4fmp9hf9346h0kmdgqsqx0fhjr3k0wpw"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page
|
||||
"https://github.com/unicode-rs/unicode-xid")
|
||||
(synopsis "Determine Unicode XID related properties")
|
||||
(description "Determine whether characters have the XID_Start
|
||||
or XID_Continue properties according to Unicode Standard Annex #31.")
|
||||
;; Dual licensed.
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
|
Loading…
Reference in a new issue