(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+)))