mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: openocd: Reinstate the change-udev-group phase.
* gnu/packages/embedded.scm (openocd)[phases]: Delete trailing #t. {change-udev-group}: Order following unpack, not the nonexistent autoreconf phase. [home-page]: Use HTTPS. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
2c9902cae9
commit
1e8b999717
1 changed files with 4 additions and 6 deletions
|
@ -618,19 +618,17 @@ (define-public openocd
|
|||
(("-DPKGBLDDATE=") "-DDISABLED_PKGBLDDATE="))
|
||||
(patch-shebang "bootstrap")
|
||||
(invoke "./bootstrap" "nosubmodule")))
|
||||
(add-after 'autoreconf 'change-udev-group
|
||||
(add-after 'unpack 'change-udev-group
|
||||
(lambda _
|
||||
(substitute* "contrib/60-openocd.rules"
|
||||
(("plugdev") "dialout"))
|
||||
#t))
|
||||
(("plugdev") "dialout"))))
|
||||
(add-after 'install 'install-udev-rules
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(install-file "contrib/60-openocd.rules"
|
||||
(string-append
|
||||
(assoc-ref outputs "out")
|
||||
"/lib/udev/rules.d/"))
|
||||
#t)))))
|
||||
(home-page "http://openocd.org")
|
||||
"/lib/udev/rules.d/")))))))
|
||||
(home-page "https://openocd.org/")
|
||||
(synopsis "On-Chip Debugger")
|
||||
(description "OpenOCD provides on-chip programming and debugging support
|
||||
with a layered architecture of JTAG interface and TAP support.")
|
||||
|
|
Loading…
Reference in a new issue