mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: pulseview: Improve style.
* gnu/packages/electronics.scm (pulseview)[arguments]: Use G-Expressions. [description]: Fix max column. Change-Id: Ic4856ec45270dfd23dc5a5990db18bf25c3ec78c Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
91fb87d0ab
commit
b5f1e3671c
1 changed files with 23 additions and 22 deletions
|
@ -644,7 +644,8 @@ formats.")
|
||||||
(package
|
(package
|
||||||
(name "pulseview")
|
(name "pulseview")
|
||||||
(version "0.4.2")
|
(version "0.4.2")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://sigrok.org/download/source/pulseview/pulseview-"
|
"https://sigrok.org/download/source/pulseview/pulseview-"
|
||||||
|
@ -656,16 +657,16 @@ formats.")
|
||||||
"pulseview-glib-2.68.patch"))))
|
"pulseview-glib-2.68.patch"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;format_time_minutes_test is failing
|
(list
|
||||||
|
#:tests? #f ;format_time_minutes_test is failing
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'remove-empty-doc-directory
|
(add-after 'install 'remove-empty-doc-directory
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(with-directory-excursion (string-append #$output "/share")
|
||||||
(with-directory-excursion (string-append out "/share")
|
|
||||||
;; Use RMDIR to never risk silently deleting files.
|
;; Use RMDIR to never risk silently deleting files.
|
||||||
(rmdir "doc/pulseview")
|
(rmdir "doc/pulseview")
|
||||||
(rmdir "doc"))))))))
|
(rmdir "doc")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config qttools-5))
|
(list pkg-config qttools-5))
|
||||||
(inputs
|
(inputs
|
||||||
|
@ -678,8 +679,8 @@ formats.")
|
||||||
qtsvg-5))
|
qtsvg-5))
|
||||||
(home-page "https://www.sigrok.org/wiki/PulseView")
|
(home-page "https://www.sigrok.org/wiki/PulseView")
|
||||||
(synopsis "Qt based logic analyzer, oscilloscope and MSO GUI for sigrok")
|
(synopsis "Qt based logic analyzer, oscilloscope and MSO GUI for sigrok")
|
||||||
(description "PulseView is a Qt based logic analyzer, oscilloscope and MSO GUI
|
(description "PulseView is a Qt based logic analyzer, oscilloscope and MSO
|
||||||
for sigrok.")
|
GUI for sigrok.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public python-cocotb
|
(define-public python-cocotb
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue