mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 09:58:57 -05:00
gnu: Add rust-unsafe-libyaml-0.2.
* gnu/packages/crates-io.scm (rust-unsafe-libyaml-0.2): New variable.
This commit is contained in:
parent
8e7b8c9140
commit
4d6084fc88
1 changed files with 24 additions and 0 deletions
|
@ -70967,6 +70967,30 @@ (define-public rust-unsafe-any-0.4
|
||||||
"Traits and implementations for unchecked downcasting.")
|
"Traits and implementations for unchecked downcasting.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
;; This package was originally transpiled from libyaml, but has seen development
|
||||||
|
;; since then, showing that it is in its editable form.
|
||||||
|
(define-public rust-unsafe-libyaml-0.2
|
||||||
|
(package
|
||||||
|
(name "rust-unsafe-libyaml")
|
||||||
|
(version "0.2.8")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "unsafe-libyaml" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"19l0v20x83dvxbr68rqvs9hvawaqd929hia1nldfahlhamm80r8q"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; use of undeclared crate or module `unsafe_libyaml_test_suite`
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-pretty-assertions" ,rust-pretty-assertions-1))))
|
||||||
|
(home-page "https://github.com/dtolnay/unsafe-libyaml")
|
||||||
|
(synopsis "Libyaml in rust")
|
||||||
|
(description "This package provides libyaml transpiled to rust by c2rust,
|
||||||
|
with changes and updated applied to it.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-unsafe-unwrap-0.1
|
(define-public rust-unsafe-unwrap-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-unsafe-unwrap")
|
(name "rust-unsafe-unwrap")
|
||||||
|
|
Loading…
Reference in a new issue