diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-11-11 15:46:59 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-11-11 15:46:59 +0100 |
commit | fa3284b102d93d8bcc835181bafb428dcfdff405 (patch) | |
tree | 57ee6b8a52a9dc949e00a30173f775939728b945 | |
parent | a42476849774683d3beb3ac694bffa573a3832a8 (diff) |
add GPUTILS
-rw-r--r-- | electronics.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/electronics.scm b/electronics.scm new file mode 100644 index 0000000..58d54e2 --- /dev/null +++ b/electronics.scm @@ -0,0 +1,24 @@ +(define-module (electronics) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu) + #:use-module ((guix licenses) #:prefix license:)) + +(define-public gputils + (package + (name "gputils") + (version "1.5.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/gputils/gputils/" + version "/gputils-" version ".tar.bz2")) + (sha256 + (base32 + "1xfvmvb6zyzs5bqycbvmc6hyl2vp2pv22aaq5974vip4rriklhf7")))) + (build-system gnu-build-system) + (home-page "https://gputils.sourceforge.io/") + (synopsis "GNU PIC Utilities") + (description "GPUTILS is a collection of tools for the Microchip (TM) PIC +microcontrollers. It includes gpasm, gplink, and gplib.") + (license license:gpl2+))) |