me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-self-cell-1.

* gnu/packages/crates-io.scm (rust-self-cell-1): New variable.
Efraim Flashner 2023-08-03 11:52:36 +03:00
parent 63fe8431ad
commit f7b0061ff9
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 0 deletions

View File

@ -58591,6 +58591,33 @@ macOS and iOS.")
#:cargo-development-inputs
(("rust-phf-codegen" ,rust-phf-codegen-0.8))))))
(define-public rust-self-cell-1
(package
(name "rust-self-cell")
(version "1.0.1")
(source (origin
(method url-fetch)
(uri (crate-uri "self-cell" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1djgfccbfhj2zv7xmqc2nxwn41g1swyrxg1d488pirj3am8rwc2c"))
(modules '((guix build utils)))
(snippet
'(begin (substitute* "Cargo.toml"
(("=([[:digit:]]+\\.[[:digit:]]+\\.[[:digit:]]+)" _ version)
(string-append "^" version)))))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-rustversion" ,rust-rustversion-1))
#:cargo-development-inputs (("rust-once-cell" ,rust-once-cell-1))))
(home-page "https://github.com/Voultapher/self_cell")
(synopsis "Self-referential structs in stable Rust")
(description
"This package provides safe-to-use proc-macro-free self-referential structs
in stable Rust.")
(license license:asl2.0)))
(define-public rust-semver-1
(package
(name "rust-semver")