mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: rust-emacs-module: Update to 0.18.
* gnu/packages/crates-io.scm (rust-emacs-module-0.18): New variable. (rust-emacs-module-0.10): Inherit from rust-emacs-module-0.18. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
7b006ca5cf
commit
f00a651c3d
1 changed files with 27 additions and 10 deletions
|
@ -19360,8 +19360,33 @@ (define-public rust-emacs-macros-0.11
|
||||||
(description "This package provides proc macros for Emacs modules.")
|
(description "This package provides proc macros for Emacs modules.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public rust-emacs-module-0.10
|
(define-public rust-emacs-module-0.18
|
||||||
(package
|
(package
|
||||||
|
(name "rust-emacs-module")
|
||||||
|
(version "0.18.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "emacs_module" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1ypjyyv2ca3vza4sia91ckxamgfk63yd8frkvg3d4ph4fk4pn1mk"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-bindgen" ,rust-bindgen-0.59))))
|
||||||
|
(inputs
|
||||||
|
(list 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-emacs-module-0.10
|
||||||
|
(package (inherit rust-emacs-module-0.18)
|
||||||
(name "rust-emacs-module")
|
(name "rust-emacs-module")
|
||||||
(version "0.10.0")
|
(version "0.10.0")
|
||||||
(source
|
(source
|
||||||
|
@ -19373,17 +19398,9 @@ (define-public rust-emacs-module-0.10
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1gf9lz735xbkyir53dyv362drfx3nin5an5cx39kd8q8kjjwix5g"))))
|
"1gf9lz735xbkyir53dyv362drfx3nin5an5cx39kd8q8kjjwix5g"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-bindgen" ,rust-bindgen-0.48))))
|
(("rust-bindgen" ,rust-bindgen-0.48))))))
|
||||||
(inputs
|
|
||||||
(list 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-email-0.0.20
|
(define-public rust-email-0.0.20
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue