mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-wordgen: Fix build on 32-bit platforms.
* gnu/packages/emacs-xyz.scm (emacs-wordgen)[arguments]<#:emacs>: Use EMACS-WIDE-INT on 32-bit platforms.
This commit is contained in:
parent
89acc4d5c6
commit
2d06dfc050
1 changed files with 6 additions and 0 deletions
|
@ -24411,6 +24411,12 @@ It replaces the standard completions buffer with Ido prompt.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "06vbc9ycz1nbjwjkg99y3lj6jwb6lnwnmkqf09yr00jjrrfhfash"))))
|
(base32 "06vbc9ycz1nbjwjkg99y3lj6jwb6lnwnmkqf09yr00jjrrfhfash"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:emacs (if (target-64bit?)
|
||||||
|
emacs-minimal
|
||||||
|
;; Require wide-int support for 32-bit platform.
|
||||||
|
emacs-wide-int)))
|
||||||
(home-page "https://github.com/Fanael/wordgen.el")
|
(home-page "https://github.com/Fanael/wordgen.el")
|
||||||
(synopsis "Random word generator")
|
(synopsis "Random word generator")
|
||||||
(description "This package provides functions to generate random words
|
(description "This package provides functions to generate random words
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue