~ruther/guix-local

4a239cb65a000bfa6066a2a61985a9b6ebf7704f — Artyom V. Poptsov 1 year, 2 months ago f71f092
gnu: xfel: Move the package definition down.

* gnu/packages/admin.scm (xfel): Move the package definition down to improve
alphabetical sorting of packages in the module.

Change-Id: I07cff55c4b4cf3d65ab62d1519becdacaaed6b0e
1 files changed, 40 insertions(+), 40 deletions(-)

M gnu/packages/admin.scm
M gnu/packages/admin.scm => gnu/packages/admin.scm +40 -40
@@ 4248,46 4248,6 @@ in order to be able to find it.
@end enumerate")
    (license license:gpl2+)))

(define-public xfel
  (package
    (name "xfel")
    (version "1.3.3")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/xboot/xfel")
              (commit (string-append "v" version))))
       (sha256
        (base32 "15xlqkj7lf3xszgfyci32lrwdjhqmmm9clmwlp1qn6hywal3d2p4"))
       (file-name (git-file-name name version))))
    (native-inputs
     (list pkg-config))
    (inputs
     (list libusb))
    (build-system gnu-build-system)
    (arguments
     (list #:tests? #f ; No tests exist
           #:make-flags #~(list "PREFIX="
                                (string-append "DESTDIR=" #$output))
           #:phases
           #~(modify-phases %standard-phases
               (delete 'configure)
               (add-after 'unpack 'patch-makefile
                 (lambda _
                   (substitute* "Makefile"
                     (("/usr/local")
                      #$output)
                     (("/usr/share")
                      (string-append #$output "/share/"))
                     (("/etc/udev/rules.d")
                      (string-append #$output "/lib/udev/rules.d"))))))))
    (home-page "https://github.com/xboot/xfel")
    (synopsis "Remote debugging tool for Allwinner devices")
    (description "This package contains a debugging tool for Allwinner devices
(connects via USB OTG).")
    (license license:expat)))

(define-public sedsed
  (package
    (name "sedsed")


@@ 6850,3 6810,43 @@ communicate with which other processes.  It provides more usable versions
of ps, top and pstree.")
    (home-page "https://github.com/walles/px")
    (license license:expat)))

(define-public xfel
  (package
    (name "xfel")
    (version "1.3.3")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/xboot/xfel")
              (commit (string-append "v" version))))
       (sha256
        (base32 "15xlqkj7lf3xszgfyci32lrwdjhqmmm9clmwlp1qn6hywal3d2p4"))
       (file-name (git-file-name name version))))
    (native-inputs
     (list pkg-config))
    (inputs
     (list libusb))
    (build-system gnu-build-system)
    (arguments
     (list #:tests? #f ; No tests exist
           #:make-flags #~(list "PREFIX="
                                (string-append "DESTDIR=" #$output))
           #:phases
           #~(modify-phases %standard-phases
               (delete 'configure)
               (add-after 'unpack 'patch-makefile
                 (lambda _
                   (substitute* "Makefile"
                     (("/usr/local")
                      #$output)
                     (("/usr/share")
                      (string-append #$output "/share/"))
                     (("/etc/udev/rules.d")
                      (string-append #$output "/lib/udev/rules.d"))))))))
    (home-page "https://github.com/xboot/xfel")
    (synopsis "Remote debugging tool for Allwinner devices")
    (description "This package contains a debugging tool for Allwinner devices
(connects via USB OTG).")
    (license license:expat)))