mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add xfel.
* gnu/packages/admin.scm (xfel): New variable.
This commit is contained in:
parent
0976e92a0f
commit
c78f916a46
1 changed files with 37 additions and 0 deletions
|
@ -3537,6 +3537,43 @@ in order to be able to find it.
|
||||||
@end enumerate")
|
@end enumerate")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public xfel
|
||||||
|
(package
|
||||||
|
(name "xfel")
|
||||||
|
(version "1.2.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/xboot/xfel.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(sha256
|
||||||
|
(base32 "0r4j63vh6279fj1yh71h08d1av3nc0majlad5yh6admsxiig101m"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config))
|
||||||
|
(inputs
|
||||||
|
(list libusb))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; No tests exist
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-installation-target
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let ((out (assoc-ref outputs "out")))
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("/usr/local") out)
|
||||||
|
(("/usr") out)
|
||||||
|
(("/etc/udev/rules.d")
|
||||||
|
(string-append out "/lib/udev/rules.d"))))))
|
||||||
|
(delete 'configure))))
|
||||||
|
(home-page "https://github.com/xboot/xfel")
|
||||||
|
(synopsis "Remote debugging tool for Allwinner D1 computers")
|
||||||
|
(description "This package contains a debugging tool for Allwinner D1
|
||||||
|
devices (connects via USB OTG).")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public sedsed
|
(define-public sedsed
|
||||||
(package
|
(package
|
||||||
(name "sedsed")
|
(name "sedsed")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue