mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 20:15:25 -06:00
gnu: Add rust-emacs-0.19.
* gnu/packages/crates-io.scm (rust-emacs-0.19): New variable. (rust-emacs-0.18): Inherit from rust-emacs-0.19. Change-Id: I7791c869e8fdde96734499722d35f8f6aa2445fa Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
737d1b4fb1
commit
b9547aa9bf
1 changed files with 33 additions and 14 deletions
|
|
@ -23105,20 +23105,47 @@ easy.")
|
|||
"This package provides a pure-Rust library for parsing ELF files.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-emacs-0.19
|
||||
(package
|
||||
(name "rust-emacs")
|
||||
(version "0.19.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "emacs" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "133ip19m1nq8krf04klh1jpm833wpw6kdy2jksgylbw4xcp3yxws"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-anyhow" ,rust-anyhow-1)
|
||||
("rust-ctor" ,rust-ctor-0.1)
|
||||
("rust-emacs-macros" ,rust-emacs-macros-0.17)
|
||||
("rust-emacs-module" ,rust-emacs-module-0.18)
|
||||
("rust-failure-derive" ,rust-failure-derive-0.1)
|
||||
("rust-once-cell" ,rust-once-cell-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(inputs
|
||||
(list clang))
|
||||
(home-page "https://github.com/ubolonton/emacs-module-rs")
|
||||
(synopsis "Library for creating Emacs's dynamic modules")
|
||||
(description
|
||||
"This crate provides a Rust library for creating Emacs' dynamic modules.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-emacs-0.18
|
||||
(package
|
||||
(inherit rust-emacs-0.19)
|
||||
(name "rust-emacs")
|
||||
(version "0.18.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "emacs" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0r860i73b2680i2fhdl2l1wwvvmf2zksncpckgkksdcx310ak5v7"))))
|
||||
(build-system cargo-build-system)
|
||||
(base32 "0r860i73b2680i2fhdl2l1wwvvmf2zksncpckgkksdcx310ak5v7"))))
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-anyhow" ,rust-anyhow-1)
|
||||
|
|
@ -23128,15 +23155,7 @@ easy.")
|
|||
("rust-failure" ,rust-failure-0.1)
|
||||
("rust-failure-derive" ,rust-failure-derive-0.1)
|
||||
("rust-once-cell" ,rust-once-cell-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(inputs
|
||||
(list clang))
|
||||
(home-page "https://github.com/ubolonton/emacs-module-rs")
|
||||
(synopsis "Library for creating Emacs's dynamic modules")
|
||||
(description
|
||||
"This crate provides a high level binding to emacs-module:
|
||||
Emacs' support for dynamic modules.")
|
||||
(license license:bsd-3)))
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-emacs-0.11
|
||||
(package (inherit rust-emacs-0.18)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue