gnu: Add rust-emacs-module-0.10.
* gnu/packages/crates-io.scm (rust-emacs-module-0.10): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
d7b2b291a1
commit
d58064b600
1 changed files with 25 additions and 0 deletions
|
@ -14232,6 +14232,31 @@ (define-public rust-either-1
|
|||
@code{Right} is a general purpose sum type with two cases.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-emacs-module-0.10
|
||||
(package
|
||||
(name "rust-emacs-module")
|
||||
(version "0.10.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "emacs_module" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1gf9lz735xbkyir53dyv362drfx3nin5an5cx39kd8q8kjjwix5g"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bindgen" ,rust-bindgen-0.48))))
|
||||
(inputs
|
||||
`(("clang" ,clang)))
|
||||
(home-page "https://github.com/ubolonton/emacs-module-rs")
|
||||
(synopsis "Raw FFI for emacs-module")
|
||||
(description "This module provides a high-level binding to emacs-module:
|
||||
Emacs' support for dynamic modules.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-embed-resource-1
|
||||
(package
|
||||
(name "rust-embed-resource")
|
||||
|
|
Loading…
Reference in a new issue