mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: gammastep: Add bash-minimal to inputs.
* gnu/packages/xdisorg.scm (gammastep) [inputs]: Add bash-minimal. [arguments]: Delete trailing #t. Change-Id: I8ab8b8b6293aaf5bf907003044bdb79adc614ceb
This commit is contained in:
parent
e81fab29e7
commit
a45e4bc5c2
1 changed files with 5 additions and 6 deletions
|
@ -3659,7 +3659,7 @@ (define-public xkbset
|
||||||
(base32 "1xa6sgvnwynl2qrjnsppvb2vg4p5v1pisrfhrmnlymw1fzhh6s9p"))))
|
(base32 "1xa6sgvnwynl2qrjnsppvb2vg4p5v1pisrfhrmnlymw1fzhh6s9p"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list libx11 perl perl-tk))
|
(list bash-minimal libx11 perl perl-tk))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; There are none.
|
`(#:tests? #f ; There are none.
|
||||||
#:make-flags
|
#:make-flags
|
||||||
|
@ -3681,14 +3681,13 @@ (define-public xkbset
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(wrap-program (string-append (assoc-ref outputs "out")
|
(wrap-program (string-append (assoc-ref outputs "out")
|
||||||
"/bin/xkbset-gui")
|
"/bin/xkbset-gui")
|
||||||
`("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))
|
`("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))))
|
||||||
#t))
|
|
||||||
(replace 'install-license-files
|
(replace 'install-license-files
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(install-file "COPYRIGHT"
|
(install-file "COPYRIGHT"
|
||||||
(string-append (assoc-ref outputs "out")
|
(string-append
|
||||||
"/share/doc/" ,name "-" ,version))
|
(assoc-ref outputs "out")
|
||||||
#t)))))
|
"/share/doc/" ,name "-" ,version)))))))
|
||||||
(home-page "https://stephenmontgomerysmith.github.io/software/#xkbset")
|
(home-page "https://stephenmontgomerysmith.github.io/software/#xkbset")
|
||||||
(synopsis "User-preference utility for XKB extensions for X")
|
(synopsis "User-preference utility for XKB extensions for X")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue