mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
This commit is contained in:
parent
aca2defe01
commit
8394619bac
460 changed files with 37644 additions and 49727 deletions
|
@ -67,11 +67,8 @@
|
|||
(base32
|
||||
"0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("dmidecode" ,dmidecode)
|
||||
("pciutils" ,pciutils)
|
||||
("libusb" ,libusb)
|
||||
("libftdi" ,libftdi)))
|
||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||
(inputs (list dmidecode pciutils libusb libftdi))
|
||||
(native-inputs (list pkg-config))
|
||||
(arguments
|
||||
'(#:make-flags
|
||||
(list "CC=gcc"
|
||||
|
@ -122,7 +119,7 @@ programmer devices.")
|
|||
(inputs
|
||||
;; Building with libusb-compat will succeed but the result will be broken.
|
||||
;; See <https://github.com/pali/0xFFFF/issues/3>.
|
||||
`(("libusb" ,libusb-0.1)))
|
||||
(list libusb-0.1))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
@ -159,8 +156,7 @@ brick your device.")
|
|||
("libusb" ,libusb-compat)
|
||||
("libftdi" ,libftdi)))
|
||||
(native-inputs
|
||||
`(("bison" ,bison)
|
||||
("flex" ,flex)))
|
||||
(list bison flex))
|
||||
(home-page "https://www.nongnu.org/avrdude/")
|
||||
(synopsis "AVR downloader and uploader")
|
||||
(description
|
||||
|
@ -184,9 +180,9 @@ programming} technique.")
|
|||
(patches (search-patches "dfu-programmer-fix-libusb.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(list pkg-config))
|
||||
(inputs
|
||||
`(("libusb" ,libusb)))
|
||||
(list libusb))
|
||||
(home-page "https://dfu-programmer.github.io/")
|
||||
(synopsis "Device firmware update programmer for Atmel chips")
|
||||
(description
|
||||
|
@ -209,9 +205,9 @@ ISP.")
|
|||
"17piiyp08pccqmbhnswv957lkypmmm92kps79hypxvw23ai3pddl"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("libusb" ,libusb)))
|
||||
(list libusb))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(list pkg-config))
|
||||
(synopsis "Host side of the USB Device Firmware Upgrade (DFU) protocol")
|
||||
(description
|
||||
"The DFU (Universal Serial Bus Device Firmware Upgrade) protocol is
|
||||
|
@ -263,7 +259,7 @@ firmware from it.")
|
|||
(install-file "teensy_loader_cli" bin)
|
||||
#t))))))
|
||||
(inputs
|
||||
`(("libusb-compat" ,libusb-compat)))
|
||||
(list libusb-compat))
|
||||
(synopsis "Command line firmware uploader for Teensy development boards")
|
||||
(description
|
||||
"The Teensy loader program communicates with your Teensy board when the
|
||||
|
@ -298,9 +294,9 @@ non-root users.")
|
|||
#:make-flags (list (string-append "PREFIX=" %output))
|
||||
#:tests? #f)) ; no tests
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(list pkg-config))
|
||||
(inputs
|
||||
`(("libusb" ,libusb)))
|
||||
(list libusb))
|
||||
(home-page "https://github.com/linux-rockchip/rkflashtool")
|
||||
(synopsis "Tools for flashing Rockchip devices")
|
||||
(description "Allows flashing of Rockchip based embedded linux devices.
|
||||
|
@ -344,9 +340,7 @@ RK3036, RK3066, RK312X, RK3168, RK3188, RK3288, RK3368.")
|
|||
(install-file "libpit/libpit.a" lib)
|
||||
#t))))))
|
||||
(inputs
|
||||
`(("libusb" ,libusb)
|
||||
("qtbase" ,qtbase-5)
|
||||
("zlib" ,zlib)))
|
||||
(list libusb qtbase-5 zlib))
|
||||
(home-page "https://glassechidna.com.au/heimdall/")
|
||||
(synopsis "Flash firmware onto Samsung mobile devices")
|
||||
(description "@command{heimdall} is a tool suite used to flash firmware (aka
|
||||
|
@ -404,8 +398,7 @@ dump Intel Firmware Descriptor data of an image file.")
|
|||
"0nw555i0fm5kljha9h47bk70ykbwv8ddfk6qhz6kfqb79vzhy4h2"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("pciutils" ,pciutils)
|
||||
("zlib" ,zlib)))
|
||||
(list pciutils zlib))
|
||||
(arguments
|
||||
`(#:make-flags
|
||||
(list "CC=gcc"
|
||||
|
@ -487,7 +480,7 @@ ME as far as possible (it only edits ME firmware image files).")
|
|||
(install-file "UEFITool" (string-append (assoc-ref outputs "out")
|
||||
"/bin")))))))
|
||||
(inputs
|
||||
`(("qtbase" ,qtbase-5)))
|
||||
(list qtbase-5))
|
||||
(home-page "https://github.com/LongSoft/UEFITool/")
|
||||
(synopsis "UEFI image editor")
|
||||
(description "@code{uefitool} is a graphical image file editor for
|
||||
|
@ -513,15 +506,14 @@ Unifinished Extensible Firmware Interface (UEFI) images.")
|
|||
(assoc-ref %build-inputs "bash")
|
||||
"/bin/bash"))))
|
||||
(inputs
|
||||
`(("boost" ,boost)
|
||||
("libgcrypt" ,libgcrypt)))
|
||||
(list boost libgcrypt))
|
||||
(native-inputs
|
||||
`(("bison" ,bison)
|
||||
("diffutils" ,diffutils)
|
||||
("ghostscript" ,ghostscript)
|
||||
("groff" ,groff)
|
||||
("libtool" ,libtool)
|
||||
("which" ,which)))
|
||||
(list bison
|
||||
diffutils
|
||||
ghostscript
|
||||
groff
|
||||
libtool
|
||||
which))
|
||||
(home-page "http://srecord.sourceforge.net/")
|
||||
(synopsis "Tools for EPROM files")
|
||||
(description "The SRecord package is a collection of powerful tools for
|
||||
|
@ -568,13 +560,9 @@ formats, and can perform many different manipulations.")
|
|||
(cut dump-port pipe <>))))))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(list pkg-config))
|
||||
(inputs
|
||||
`(("libusb" ,libusb)
|
||||
("bzip2" ,bzip2)
|
||||
("zlib" ,zlib)
|
||||
("libzip" ,libzip)
|
||||
("openssl" ,openssl)))
|
||||
(list libusb bzip2 zlib libzip openssl))
|
||||
(home-page "https://github.com/NXPmicro/mfgtools")
|
||||
(synopsis "Freescale/NXP I.MX chip image deploy tools")
|
||||
(description "@code{uuu} is a command line tool, evolved out of MFGTools.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue