gnu: Add rust-filetime-0.1.
* gnu/packages/crates-io.scm (rust-filetime-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
435090fa3f
commit
72522fd1ef
1 changed files with 21 additions and 0 deletions
|
|
@ -32,6 +32,7 @@
|
||||||
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
|
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
|
||||||
;;; Copyright © 2022 Paul Alesius <paul@unnservice.com>
|
;;; Copyright © 2022 Paul Alesius <paul@unnservice.com>
|
||||||
;;; Copyright © 2023 Arnav Andrew Jose <arnav.jose@gmail.com>
|
;;; Copyright © 2023 Arnav Andrew Jose <arnav.jose@gmail.com>
|
||||||
|
;;; Copyright © 2023 Wilko Meyer <w@wmeyer.eu>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
|
@ -24389,6 +24390,26 @@ representation.")
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-filetime-0.1
|
||||||
|
(package
|
||||||
|
(inherit rust-filetime-0.2)
|
||||||
|
(name "rust-filetime")
|
||||||
|
(version "0.1.15")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "filetime" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"03xishfxzpr4nfz4g3r218d6b6g94rxsqw9pw96m6wa8wgrm6iki"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-cfg-if" ,rust-cfg-if-0.1)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-redox-syscall" ,rust-redox-syscall-0.1))))))
|
||||||
|
|
||||||
(define-public rust-field-offset-0.3
|
(define-public rust-field-offset-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-field-offset")
|
(name "rust-field-offset")
|
||||||
|
|
|
||||||
Reference in a new issue