mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add sigrok-firmware-fx2lafw.
* gnu/packages/electronics.scm (sigrok-firmware-fx2lafw): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
c07358022a
commit
7a19de9c48
1 changed files with 23 additions and 2 deletions
|
@ -28,8 +28,8 @@ (define-module (gnu packages electronics)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python))
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages sdcc))
|
||||||
|
|
||||||
(define-public libserialport
|
(define-public libserialport
|
||||||
(package
|
(package
|
||||||
|
@ -90,3 +90,24 @@ (define-public libsigrokdecode
|
||||||
(description "Libsigrokdecode is a shared library written in C, which provides
|
(description "Libsigrokdecode is a shared library written in C, which provides
|
||||||
(streaming) protocol decoding functionality.")
|
(streaming) protocol decoding functionality.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public sigrok-firmware-fx2lafw
|
||||||
|
(package
|
||||||
|
(name "sigrok-firmware-fx2lafw")
|
||||||
|
(version "0.1.5")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://sigrok.org/download/source/sigrok-firmware-fx2lafw/"
|
||||||
|
"sigrok-firmware-fx2lafw-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0bbdgy4rpc00jl0l0744m2ibjlqi26bhrkjr7vplivdsjdmhjx6a"))))
|
||||||
|
(native-inputs
|
||||||
|
`(("sdcc" ,sdcc)))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(home-page "http://www.sigrok.org/wiki/Fx2lafw")
|
||||||
|
(synopsis "Firmware for Cypress FX2 chips")
|
||||||
|
(description "Fx2lafw is free firmware for Cypress FX2 chips which makes them usable
|
||||||
|
as simple logic analyzer and/or oscilloscope hardware.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue