mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 02:07:56 +01:00
gnu: xsettingsd: Add manuals.
* gnu/packages/xdisorg.scm (xsettingsd)[arguments]: Modify install phase to include manuals.
This commit is contained in:
parent
c2f49366ec
commit
6836efaeb3
1 changed files with 4 additions and 1 deletions
|
@ -2484,10 +2484,13 @@ (define-public xsettingsd
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin")))
|
(bin (string-append out "/bin"))
|
||||||
|
(man (string-append out "/share/man/man1")))
|
||||||
(mkdir-p bin)
|
(mkdir-p bin)
|
||||||
(install-file "xsettingsd" bin)
|
(install-file "xsettingsd" bin)
|
||||||
(install-file "dump_xsettings" bin)
|
(install-file "dump_xsettings" bin)
|
||||||
|
(install-file "xsettingsd.1" man)
|
||||||
|
(install-file "dump_xsettings.1" man)
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "https://github.com/derat/xsettingsd")
|
(home-page "https://github.com/derat/xsettingsd")
|
||||||
(synopsis "Xorg settings daemon")
|
(synopsis "Xorg settings daemon")
|
||||||
|
|
Loading…
Reference in a new issue