mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-spacious-padding: Update to 0.7.0.
* gnu/packages/emacs-xyz.scm (emacs-spacious-padding): Update to 0.7.0. [source]: Switch to git-fetch. [arguments]: Disable #:tests?. <#:phases>: Add build-info-manual. [native-inputs]: Add texinfo. Change-Id: I6e47b1b4ee0d414c27b30f5171422e519c8b1094 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
e737a37352
commit
2f417589be
1 changed files with 20 additions and 5 deletions
|
@ -43048,15 +43048,30 @@ provides an easy way to bind keys under a configurable prefix key.")
|
||||||
(define-public emacs-spacious-padding
|
(define-public emacs-spacious-padding
|
||||||
(package
|
(package
|
||||||
(name "emacs-spacious-padding")
|
(name "emacs-spacious-padding")
|
||||||
(version "0.6.0")
|
(version "0.7.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://elpa.gnu.org/packages/spacious-padding-"
|
(uri (git-reference
|
||||||
version ".tar"))
|
(url "https://github.com/protesilaos/spacious-padding/")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0czx4w6vm56blvc26gymmijvcqhvmrlakqwlks1prckgnkgsvcpx"))))
|
(base32 "00mwzbvhzlvnhsbc5rki5cx08fnx4s7cmnlz8lqh534wmsmh3wf0"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ;no tests
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'build-info-manual
|
||||||
|
(lambda _
|
||||||
|
(invoke "emacs"
|
||||||
|
"--batch"
|
||||||
|
"--eval=(require 'ox-texinfo)"
|
||||||
|
"--eval=(find-file \"README.org\")"
|
||||||
|
"--eval=(org-texinfo-export-to-info)"))))))
|
||||||
|
(native-inputs (list texinfo))
|
||||||
(home-page "https://github.com/protesilaos/spacious-padding")
|
(home-page "https://github.com/protesilaos/spacious-padding")
|
||||||
(synopsis "Increase the padding or spacing of frames and windows")
|
(synopsis "Increase the padding or spacing of frames and windows")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue