gnu: make-qmk-firmware/implementation: Replace "/" in package name by "-".
* gnu/packages/firmware.scm (make-qmk-firmware/implementation): Replace "/" in package name by "-". Change-Id: I5cca6d21e52171a5fb1231ea1632661550b4a950
This commit is contained in:
parent
9f066c813b
commit
b87b96b9c7
@ -88,6 +88,7 @@
|
|||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (ice-9 format)
|
#:use-module (ice-9 format)
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
|
#:use-module (ice-9 regex)
|
||||||
|
|
||||||
#:export (make-ergodox-firmware
|
#:export (make-ergodox-firmware
|
||||||
make-qmk-firmware))
|
make-qmk-firmware))
|
||||||
@ -1523,7 +1524,9 @@ upstream repository, provide a file-like object directory containing the whole
|
|||||||
keyboard definition in KEYBOARD-SOURCE-DIRECTORY."
|
keyboard definition in KEYBOARD-SOURCE-DIRECTORY."
|
||||||
(package
|
(package
|
||||||
(name (string-append "qmk-firmware-"
|
(name (string-append "qmk-firmware-"
|
||||||
(string-replace-substring keyboard "_" "-") "-"
|
(regexp-substitute/global #f "[_/]" keyboard
|
||||||
|
'pre "-" 'post)
|
||||||
|
"-"
|
||||||
(string-replace-substring keymap "_" "-")))
|
(string-replace-substring keymap "_" "-")))
|
||||||
;; Note: When updating this package, make sure to also update the commit
|
;; Note: When updating this package, make sure to also update the commit
|
||||||
;; used for the LUFA submodule in the 'copy-lufa-source' phase below.
|
;; used for the LUFA submodule in the 'copy-lufa-source' phase below.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user