me
/
guix
Archived
1
0
Fork 0

gnu: rust-errno-dragonfly-0.1: Update to 0.1.2.

* gnu/packages/crates-io.scm (rust-errno-dragonfly-0.1): Update to 0.1.2.
[arguments]: Don't skip the build.
[cargo-inputs]: Add rust-cc-1.  Remove rust-gcc-0.3.

Change-Id: Ibd4ad60487547f3ee811bd89dfeba7d0db6a1e02
master
Efraim Flashner 2024-02-08 15:52:33 +02:00
parent 501418b9d2
commit a2ec7bed14
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 9 deletions

View File

@ -21058,22 +21058,19 @@ deserialized from environment variables.")
(define-public rust-errno-dragonfly-0.1
(package
(name "rust-errno-dragonfly")
(version "0.1.1")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "errno-dragonfly" version))
(file-name
(string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0rshlc00nv45f14v2l1w0ma2nf1jg5j7q9pvw7hh018r6r73bjhl"))))
(base32 "1grrmcm6q8512hkq5yzch3yv8wafflc2apbmsaabiyk44yqz2s5a"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-libc" ,rust-libc-0.2)
("rust-gcc" ,rust-gcc-0.3))))
`(#:cargo-inputs
(("rust-cc" ,rust-cc-1)
("rust-libc" ,rust-libc-0.2))))
(home-page "https://github.com/mneumann/errno-dragonfly-rs")
(synopsis "Exposes errno functionality to stable Rust on DragonFlyBSD")
(description