mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 00:42:17 -05:00
gnu: Add raspi-gpio.
* gnu/packages/raspberry-pi.scm (raspi-gpio): New variable.
This commit is contained in:
parent
c298c8896c
commit
22c487677a
1 changed files with 25 additions and 0 deletions
|
@ -62,3 +62,28 @@ (define-public bcm2835
|
||||||
(supported-systems '("armhf-linux" "aarch64-linux"))
|
(supported-systems '("armhf-linux" "aarch64-linux"))
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define raspi-gpio
|
||||||
|
(let ((commit "6d0769ac04760b6e9f33b4aa1f11c682237bf368")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "raspi-gpio")
|
||||||
|
(version (git-version "0.1" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/RPi-Distro/raspi-gpio.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1fia1ma586hwhpda0jz86j6i55andq0wncbhzhzvhf7yc773cpi4"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(synopsis "State dumper for BCM270x GPIOs")
|
||||||
|
(description "Tool to help debug / hack at the BCM283x GPIO. You can dump
|
||||||
|
the state of a GPIO or (all GPIOs). You can change a GPIO mode and pulls (and
|
||||||
|
level if set as an output). Beware this tool writes directly to the BCM283x
|
||||||
|
GPIO reisters, ignoring anything else that may be using them (like Linux
|
||||||
|
drivers).")
|
||||||
|
(home-page "https://github.com/RPi-Distro/raspi-gpio")
|
||||||
|
(supported-systems '("armhf-linux" "aarch64-linux"))
|
||||||
|
(license license:bsd-3))))
|
||||||
|
|
Loading…
Reference in a new issue