mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: extractpdfmark: Improve package style.
* gnu/packages/pdf.scm (extractpdfmark)[arguments]: Use G-expressions. Fix phase name. [native-inputs]: Remove labels.
This commit is contained in:
parent
eea2d5b6f7
commit
8319be779f
1 changed files with 11 additions and 11 deletions
|
@ -124,18 +124,18 @@ (define-public extractpdfmark
|
|||
(base32 "0yzc3ajgdfb4ssxp49g2vrki45kl144j39bg0wdn6h9dc14kzmx4"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'start-xorg-server
|
||||
;; The test suite wants to write to /homeless-shelter
|
||||
(lambda _ (setenv "HOME" (getcwd)))))))
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'set-home
|
||||
;; The test suite wants to write to /homeless-shelter
|
||||
(lambda _ (setenv "HOME" (getcwd)))))))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("gettext" ,gettext-minimal)
|
||||
("ghostscript" ,ghostscript)
|
||||
("pkg-config" ,pkg-config)
|
||||
("texlive" ,texlive-tiny)))
|
||||
(list autoconf
|
||||
automake
|
||||
gettext-minimal
|
||||
ghostscript
|
||||
pkg-config
|
||||
texlive-tiny))
|
||||
(inputs
|
||||
(list poppler))
|
||||
(home-page "https://github.com/trueroad/extractpdfmark")
|
||||
|
|
Loading…
Reference in a new issue