me
/
guix
Archived
1
0
Fork 0

gnu: rust-errno-0.3: Update to 0.3.8.

* gnu/packages/crates-io.scm (rust-errno-0.3): Update to 0.3.8.
[cargo-inputs]: Replace rust-windows-sys-0.48 with 0.52.  Remove
rust-errno-dragonfly-0.1.

Change-Id: Id4f89efcfe1e7476aebfc48bd8087b8242dc74c2
master
Efraim Flashner 2024-01-02 21:44:52 +02:00
parent 6e2cc22507
commit 0764a1599f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 5 deletions

View File

@ -23687,20 +23687,19 @@ deserialized from environment variables.")
(define-public rust-errno-0.3
(package
(name "rust-errno")
(version "0.3.1")
(version "0.3.8")
(source (origin
(method url-fetch)
(uri (crate-uri "errno" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0fp7qy6fwagrnmi45msqnl01vksqwdb2qbbv60n9cz7rf0xfrksb"))))
"0ia28ylfsp36i27g1qih875cyyy4by2grf80ki8vhgh6vinf8n52"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-errno-dragonfly" ,rust-errno-dragonfly-0.1)
("rust-libc" ,rust-libc-0.2)
("rust-windows-sys" ,rust-windows-sys-0.48))))
(("rust-libc" ,rust-libc-0.2)
("rust-windows-sys" ,rust-windows-sys-0.52))))
(home-page "https://github.com/lambda-fairy/rust-errno")
(synopsis "Cross-platform interface to the @code{errno} variable")
(description