2014-07-24 07:05:43 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2014-09-29 11:52:57 -04:00
|
|
|
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
2014-07-24 07:05:43 -04:00
|
|
|
|
;;; Copyright © 2014 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
2016-05-29 11:28:04 -04:00
|
|
|
|
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
2018-03-08 03:43:15 -05:00
|
|
|
|
;;; Copyright © 2016, 2018 Ludovic Courtès <ludo@gnu.org>
|
2016-11-21 15:13:37 -05:00
|
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2017-07-13 18:28:14 -04:00
|
|
|
|
;;; Copyright © 2017 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
2017-08-29 17:54:16 -04:00
|
|
|
|
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
2018-01-13 15:16:51 -05:00
|
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2014-07-24 07:05:43 -04:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2014-09-29 11:52:57 -04:00
|
|
|
|
(define-module (gnu packages flashing-tools)
|
2017-08-29 17:54:16 -04:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2014-07-24 07:05:43 -04:00
|
|
|
|
#:use-module (guix download)
|
2016-11-21 15:13:37 -05:00
|
|
|
|
#:use-module (guix git-download)
|
2014-07-24 07:05:43 -04:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (gnu packages)
|
2017-08-29 17:54:16 -04:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2014-07-24 07:05:43 -04:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2018-02-13 17:50:11 -05:00
|
|
|
|
#:use-module (guix build-system python)
|
2014-07-24 07:05:43 -04:00
|
|
|
|
#:use-module (gnu packages bison)
|
2017-08-29 17:54:16 -04:00
|
|
|
|
#:use-module (gnu packages compression)
|
2014-07-24 07:05:43 -04:00
|
|
|
|
#:use-module (gnu packages flex)
|
|
|
|
|
#:use-module (gnu packages elf)
|
2018-02-13 17:48:09 -05:00
|
|
|
|
#:use-module (gnu packages pciutils)
|
2014-09-29 11:52:57 -04:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-07-24 07:05:43 -04:00
|
|
|
|
#:use-module (gnu packages libusb)
|
2014-09-29 11:52:57 -04:00
|
|
|
|
#:use-module (gnu packages libftdi)
|
|
|
|
|
#:use-module (gnu packages pciutils)
|
2017-08-29 17:54:16 -04:00
|
|
|
|
#:use-module (gnu packages qt)
|
2016-05-29 11:28:04 -04:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2014-09-29 11:52:57 -04:00
|
|
|
|
#:use-module (gnu packages admin))
|
|
|
|
|
|
|
|
|
|
(define-public flashrom
|
|
|
|
|
(package
|
|
|
|
|
(name "flashrom")
|
2018-03-25 11:31:22 -04:00
|
|
|
|
;; XXX: The CFLAGS=... line below can probably be removed when updating.
|
2018-01-13 15:16:51 -05:00
|
|
|
|
(version "1.0")
|
2014-09-29 11:52:57 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
2016-09-14 16:09:06 -04:00
|
|
|
|
"https://download.flashrom.org/releases/flashrom-"
|
2014-09-29 11:52:57 -04:00
|
|
|
|
version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-01-13 15:16:51 -05:00
|
|
|
|
"0r7fkpfc8w51n8ffbhclj4wa3kwrk0ijv1acwpw5myx5bchzl0ip"))))
|
2014-09-29 11:52:57 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs `(("dmidecode" ,dmidecode)
|
|
|
|
|
("pciutils" ,pciutils)
|
|
|
|
|
("libusb" ,libusb)
|
|
|
|
|
("libftdi" ,libftdi)))
|
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
|
(arguments
|
2018-03-25 11:31:22 -04:00
|
|
|
|
'(#:make-flags
|
|
|
|
|
(list "CC=gcc"
|
|
|
|
|
;; The default includes ‘-Wall -Werror’, causing the build to fail
|
|
|
|
|
;; with deprecation warnings against libusb versions >= 1.0.22.
|
|
|
|
|
"CFLAGS=-Os -Wshadow"
|
|
|
|
|
(string-append "PREFIX=" %output)
|
|
|
|
|
"CONFIG_ENABLE_LIBUSB0_PROGRAMMERS=no")
|
2018-01-13 15:16:51 -05:00
|
|
|
|
#:tests? #f ; no 'check' target
|
2014-09-29 11:52:57 -04:00
|
|
|
|
#:phases
|
gnu: Use 'modify-phases' syntax.
* gnu/packages/admin.scm (mingetty, clusterssh, wpa-supplicant-minimal,
wpa-supplicant, wakelan, acpica, tree, direvent, dstat)[arguments]: Use
'modify-phases' syntax.
* gnu/packages/algebra.scm (arb)[arguments]: Likewise.
* gnu/packages/apr.scm (apr-util)[arguments]: Likewise.
* gnu/packages/audio.scm (clalsadrv, fluidsynth, faad2, lv2-mda-piano,
lv2-mda-epiano, timidity++, vamp, soundtouch, portaudio, rsound,
zita-convolver, zita-alsa-pcmi)[arguments]: Likewise.
* gnu/packages/backup.scm (rdup, btar)[arguments]: Likewise.
* gnu/packages/bioinformatics.scm (bedops, bwa, crossmap, express,
flexbar, grit, hisat, ngs-sdk, subread)[arguments]: Likewise.
* gnu/packages/bittorrent.scm (transmission)[arguments]: Likewise.
* gnu/packages/cdrom.scm (cd-discid)[arguments]: Likewise.
* gnu/packages/compression.scm (sharutils)[arguments]: Likewise.
* gnu/packages/conky.scm (conky)[arguments]: Likewise.
* gnu/packages/databases.scm (bdb, bdb-5.3)[arguments]: Likewise.
* gnu/packages/debug.scm (delta, c-reduce)[arguments]: Likewise.
* gnu/packages/display-managers.scm (slim)[arguments]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[arguments]: Likewise.
* gnu/packages/emacs.scm (geiser, emacs-wget, bbdb)[arguments]: Likewise.
* gnu/packages/engineering.scm (pcb)[arguments]: Likewise.
* gnu/packages/firmware.scm (ath9k-htc-firmware)[arguments]: Likewise.
* gnu/packages/flashing-tools.scm (flashrom)[arguments]: Likewise.
* gnu/packages/fltk.scm (fltk)[arguments]: Likewise.
* gnu/packages/freedesktop.scm (python-pyxdg)[arguments]: Likewise.
* gnu/packages/gd.scm (perl-gd)[arguments]: Likewise.
* gnu/packages/gkrellm.scm (gkrellm)[arguments]: Likewise.
* gnu/packages/glib.scm (glibmm)[arguments]: Likewise.
* gnu/packages/gl.scm (glew)[arguments]: Likewise.
* gnu/packages/gnome.scm (icon-naming-utils, orbit2, libbonobo, gnome-vfs,
libgnome, libbonoboui, goffice-0.8, dconf)[arguments]: Likewise.
* gnu/packages/gprolog.scm (gprolog)[arguments]: Likewise.
* gnu/packages/gps.scm (gpscorrelate)[arguments]: Likewise.
* gnu/packages/graphics.scm (agg)[arguments]: Likewise.
* gnu/packages/gtk.scm (ganv, girara, gtksourceview-2, guile-present,
python2-pycairo)[arguments]: Likewise.
* gnu/packages/guile.scm (guile-1.8)[arguments]: Likewise.
* gnu/packages/guile-wm.scm (guile-wm)[arguments]: Likewise.
* gnu/packages/hugs.scm (hugs)[arguments]: Likewise.
* gnu/packages/hurd.scm (gnumach-headers, hurd-headers, hurd-minimal)
[arguments]: Likewise.
* gnu/packages/image-viewers.scm (feh, sxiv)[arguments]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[arguments]: Likewise.
* gnu/packages/linux.scm (bridge-utils, iw, fuse, unionfs-fuse/static,
lm-sensors, i2c-tools, xsensors, perf, mdadm, libaio, module-init-tools)
[arguments]: Likewise.
* gnu/packages/lisp.scm (ccl)[arguments]: Likewise.
* gnu/packages/lout.scm (lout)[arguments]: Likewise.
* gnu/packages/lua.scm (luajit)[arguments]: Likewise.
* gnu/packages/machine-learning.scm (shogun)[arguments]: Likewise.
* gnu/packages/mail.scm (exim)[arguments]: Likewise.
* gnu/packages/man.scm (man-pages, txt2man)[arguments]: Likewise.
* gnu/packages/maths.scm (lapack, superlu-dist, openlibm, openspecfun)
[arguments]: Likewise.
* gnu/packages/messaging.scm (bitlbee)[arguments]: Likewise.
* gnu/packages/mp3.scm (libmad, id3lib, mp3info)[arguments]: Likewise.
* gnu/packages/music.scm (solfege)[arguments]: Likewise.
* gnu/packages/noweb.scm (noweb)[arguments]: Likewise.
* gnu/packages/patchutils.scm (patchutils, quilt, colordiff)[arguments]:
Likewise.
* gnu/packages/pdf.scm (xpdf, zathura-cb, zathura-ps, zathura-djvu,
zathura-pdf-poppler, zathura, podofo, fbida)[arguments]: Likewise.
* gnu/packages/perl.scm (perl-file-list, perl-test-harness)[arguments]:
Likewise.
* gnu/packages/photo.scm (gphoto2)[arguments]: Likewise.
* gnu/packages/popt.scm (popt)[arguments]: Likewise.
* gnu/packages/pretty-print.scm (source-highlight, astyle)[arguments]:
Likewise.
* gnu/packages/pumpio.scm (pumpa)[arguments]: Likewise.
* gnu/packages/python.scm (python-passlib, python-pycrypto, python2-empy,
python-sqlalchemy, python-docopt)[arguments]: Likewise.
* gnu/packages/rdf.scm (lrdf)[arguments]: Likewise.
* gnu/packages/regex.scm (tre)[arguments]: Likewise.
* gnu/packages/rrdtool.scm (rrdtool)[arguments]: Likewise.
* gnu/packages/ruby.scm (ruby-2.1, ruby-1.8)[arguments]: Likewise.
* gnu/packages/sawfish.scm (sawfish)[arguments]: Likewise.
* gnu/packages/scheme.scm (racket)[arguments]: Likewise.
* gnu/packages/sdl.scm (guile-sdl)[arguments]: Likewise.
* gnu/packages/serveez.scm (serveez)[arguments]: Likewise.
* gnu/packages/skribilo.scm (skribilo)[arguments]: Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[arguments]: Likewise.
* gnu/packages/suckless.scm (dmenu, slock)[arguments]: Likewise.
* gnu/packages/tcl.scm (expect)[arguments]: Likewise.
* gnu/packages/telephony.scm (commoncpp)[arguments]: Likewise.
* gnu/packages/textutils.scm (recode, libgtextutils)[arguments]:
Likewise.
* gnu/packages/time.scm (time)[arguments]: Likewise.
* gnu/packages/tor.scm (privoxy)[arguments]: Likewise.
* gnu/packages/uucp.scm (uucp)[arguments]: Likewise.
* gnu/packages/video.scm (libdvdnav-4)[arguments]: Likewise.
* gnu/packages/web-browsers.scm (lynx)[arguments]: Likewise.
* gnu/packages/web.scm (tinyproxy)[arguments]: Likewise.
* gnu/packages/wicd.scm (wicd)[arguments]: Likewise.
* gnu/packages/wm.scm (bspwm)[arguments]: Likewise.
* gnu/packages/xdisorg.scm (sxhkd, xcape)[arguments]: Likewise.
* gnu/packages/xfce.scm (xfconf)[arguments]: Likewise.
* gnu/packages/xfig.scm (transfig)[arguments]: Likewise.
* gnu/packages/xorg.scm (imake)[arguments]: Likewise.
2017-07-29 11:28:42 -04:00
|
|
|
|
(modify-phases %standard-phases
|
2018-01-13 15:16:51 -05:00
|
|
|
|
(delete 'configure) ; no configure script
|
gnu: Use 'modify-phases' syntax.
* gnu/packages/admin.scm (mingetty, clusterssh, wpa-supplicant-minimal,
wpa-supplicant, wakelan, acpica, tree, direvent, dstat)[arguments]: Use
'modify-phases' syntax.
* gnu/packages/algebra.scm (arb)[arguments]: Likewise.
* gnu/packages/apr.scm (apr-util)[arguments]: Likewise.
* gnu/packages/audio.scm (clalsadrv, fluidsynth, faad2, lv2-mda-piano,
lv2-mda-epiano, timidity++, vamp, soundtouch, portaudio, rsound,
zita-convolver, zita-alsa-pcmi)[arguments]: Likewise.
* gnu/packages/backup.scm (rdup, btar)[arguments]: Likewise.
* gnu/packages/bioinformatics.scm (bedops, bwa, crossmap, express,
flexbar, grit, hisat, ngs-sdk, subread)[arguments]: Likewise.
* gnu/packages/bittorrent.scm (transmission)[arguments]: Likewise.
* gnu/packages/cdrom.scm (cd-discid)[arguments]: Likewise.
* gnu/packages/compression.scm (sharutils)[arguments]: Likewise.
* gnu/packages/conky.scm (conky)[arguments]: Likewise.
* gnu/packages/databases.scm (bdb, bdb-5.3)[arguments]: Likewise.
* gnu/packages/debug.scm (delta, c-reduce)[arguments]: Likewise.
* gnu/packages/display-managers.scm (slim)[arguments]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[arguments]: Likewise.
* gnu/packages/emacs.scm (geiser, emacs-wget, bbdb)[arguments]: Likewise.
* gnu/packages/engineering.scm (pcb)[arguments]: Likewise.
* gnu/packages/firmware.scm (ath9k-htc-firmware)[arguments]: Likewise.
* gnu/packages/flashing-tools.scm (flashrom)[arguments]: Likewise.
* gnu/packages/fltk.scm (fltk)[arguments]: Likewise.
* gnu/packages/freedesktop.scm (python-pyxdg)[arguments]: Likewise.
* gnu/packages/gd.scm (perl-gd)[arguments]: Likewise.
* gnu/packages/gkrellm.scm (gkrellm)[arguments]: Likewise.
* gnu/packages/glib.scm (glibmm)[arguments]: Likewise.
* gnu/packages/gl.scm (glew)[arguments]: Likewise.
* gnu/packages/gnome.scm (icon-naming-utils, orbit2, libbonobo, gnome-vfs,
libgnome, libbonoboui, goffice-0.8, dconf)[arguments]: Likewise.
* gnu/packages/gprolog.scm (gprolog)[arguments]: Likewise.
* gnu/packages/gps.scm (gpscorrelate)[arguments]: Likewise.
* gnu/packages/graphics.scm (agg)[arguments]: Likewise.
* gnu/packages/gtk.scm (ganv, girara, gtksourceview-2, guile-present,
python2-pycairo)[arguments]: Likewise.
* gnu/packages/guile.scm (guile-1.8)[arguments]: Likewise.
* gnu/packages/guile-wm.scm (guile-wm)[arguments]: Likewise.
* gnu/packages/hugs.scm (hugs)[arguments]: Likewise.
* gnu/packages/hurd.scm (gnumach-headers, hurd-headers, hurd-minimal)
[arguments]: Likewise.
* gnu/packages/image-viewers.scm (feh, sxiv)[arguments]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[arguments]: Likewise.
* gnu/packages/linux.scm (bridge-utils, iw, fuse, unionfs-fuse/static,
lm-sensors, i2c-tools, xsensors, perf, mdadm, libaio, module-init-tools)
[arguments]: Likewise.
* gnu/packages/lisp.scm (ccl)[arguments]: Likewise.
* gnu/packages/lout.scm (lout)[arguments]: Likewise.
* gnu/packages/lua.scm (luajit)[arguments]: Likewise.
* gnu/packages/machine-learning.scm (shogun)[arguments]: Likewise.
* gnu/packages/mail.scm (exim)[arguments]: Likewise.
* gnu/packages/man.scm (man-pages, txt2man)[arguments]: Likewise.
* gnu/packages/maths.scm (lapack, superlu-dist, openlibm, openspecfun)
[arguments]: Likewise.
* gnu/packages/messaging.scm (bitlbee)[arguments]: Likewise.
* gnu/packages/mp3.scm (libmad, id3lib, mp3info)[arguments]: Likewise.
* gnu/packages/music.scm (solfege)[arguments]: Likewise.
* gnu/packages/noweb.scm (noweb)[arguments]: Likewise.
* gnu/packages/patchutils.scm (patchutils, quilt, colordiff)[arguments]:
Likewise.
* gnu/packages/pdf.scm (xpdf, zathura-cb, zathura-ps, zathura-djvu,
zathura-pdf-poppler, zathura, podofo, fbida)[arguments]: Likewise.
* gnu/packages/perl.scm (perl-file-list, perl-test-harness)[arguments]:
Likewise.
* gnu/packages/photo.scm (gphoto2)[arguments]: Likewise.
* gnu/packages/popt.scm (popt)[arguments]: Likewise.
* gnu/packages/pretty-print.scm (source-highlight, astyle)[arguments]:
Likewise.
* gnu/packages/pumpio.scm (pumpa)[arguments]: Likewise.
* gnu/packages/python.scm (python-passlib, python-pycrypto, python2-empy,
python-sqlalchemy, python-docopt)[arguments]: Likewise.
* gnu/packages/rdf.scm (lrdf)[arguments]: Likewise.
* gnu/packages/regex.scm (tre)[arguments]: Likewise.
* gnu/packages/rrdtool.scm (rrdtool)[arguments]: Likewise.
* gnu/packages/ruby.scm (ruby-2.1, ruby-1.8)[arguments]: Likewise.
* gnu/packages/sawfish.scm (sawfish)[arguments]: Likewise.
* gnu/packages/scheme.scm (racket)[arguments]: Likewise.
* gnu/packages/sdl.scm (guile-sdl)[arguments]: Likewise.
* gnu/packages/serveez.scm (serveez)[arguments]: Likewise.
* gnu/packages/skribilo.scm (skribilo)[arguments]: Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[arguments]: Likewise.
* gnu/packages/suckless.scm (dmenu, slock)[arguments]: Likewise.
* gnu/packages/tcl.scm (expect)[arguments]: Likewise.
* gnu/packages/telephony.scm (commoncpp)[arguments]: Likewise.
* gnu/packages/textutils.scm (recode, libgtextutils)[arguments]:
Likewise.
* gnu/packages/time.scm (time)[arguments]: Likewise.
* gnu/packages/tor.scm (privoxy)[arguments]: Likewise.
* gnu/packages/uucp.scm (uucp)[arguments]: Likewise.
* gnu/packages/video.scm (libdvdnav-4)[arguments]: Likewise.
* gnu/packages/web-browsers.scm (lynx)[arguments]: Likewise.
* gnu/packages/web.scm (tinyproxy)[arguments]: Likewise.
* gnu/packages/wicd.scm (wicd)[arguments]: Likewise.
* gnu/packages/wm.scm (bspwm)[arguments]: Likewise.
* gnu/packages/xdisorg.scm (sxhkd, xcape)[arguments]: Likewise.
* gnu/packages/xfce.scm (xfconf)[arguments]: Likewise.
* gnu/packages/xfig.scm (transfig)[arguments]: Likewise.
* gnu/packages/xorg.scm (imake)[arguments]: Likewise.
2017-07-29 11:28:42 -04:00
|
|
|
|
(add-before 'build 'patch-exec-paths
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* "dmi.c"
|
|
|
|
|
(("\"dmidecode\"")
|
|
|
|
|
(format #f "~S"
|
|
|
|
|
(string-append (assoc-ref inputs "dmidecode")
|
|
|
|
|
"/sbin/dmidecode"))))
|
|
|
|
|
#t)))))
|
2018-01-13 15:16:23 -05:00
|
|
|
|
(home-page "https://flashrom.org/")
|
2014-09-29 11:52:57 -04:00
|
|
|
|
(synopsis "Identify, read, write, erase, and verify ROM/flash chips")
|
|
|
|
|
(description
|
|
|
|
|
"flashrom is a utility for identifying, reading, writing,
|
|
|
|
|
verifying and erasing flash chips. It is designed to flash
|
|
|
|
|
BIOS/EFI/coreboot/firmware/optionROM images on mainboards,
|
|
|
|
|
network/graphics/storage controller cards, and various other
|
|
|
|
|
programmer devices.")
|
2017-08-29 17:54:16 -04:00
|
|
|
|
(license license:gpl2)))
|
2014-07-24 07:05:43 -04:00
|
|
|
|
|
2017-07-13 18:28:14 -04:00
|
|
|
|
(define-public 0xffff
|
|
|
|
|
(package
|
|
|
|
|
(name "0xffff")
|
|
|
|
|
(version "0.7")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/pali/0xffff/archive/"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(file-name (string-append "0xFFFF" version ".tar.gz" ))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1g4032c81wkk37wvbg1dxcqq6mnd76y9x7f2crmzqi6z4q9jcxmj"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2018-03-16 11:50:14 -04:00
|
|
|
|
`(("libusb" ,libusb-0.1))) ; doesn't work with libusb-compat
|
2017-07-13 18:28:14 -04:00
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)) ; no configure
|
|
|
|
|
#:make-flags (list (string-append "PREFIX=" %output))
|
|
|
|
|
#:tests? #f)) ; no 'check' target
|
|
|
|
|
(home-page "https://github.com/pali/0xFFFF")
|
|
|
|
|
(synopsis "Flash FIASCO images on Maemo devices")
|
|
|
|
|
(description
|
|
|
|
|
"The Open Free Fiasco Firmware Flasher (0xFFFF) is a flashing tool
|
|
|
|
|
for FIASCO images. It supports generating, unpacking, editing and
|
|
|
|
|
flashing of FIASCO images for Maemo devices. Use it with care. It can
|
|
|
|
|
brick your device.")
|
2017-08-29 17:54:16 -04:00
|
|
|
|
(license license:gpl3+)))
|
2017-07-13 18:28:14 -04:00
|
|
|
|
|
2014-07-24 07:05:43 -04:00
|
|
|
|
(define-public avrdude
|
|
|
|
|
(package
|
|
|
|
|
(name "avrdude")
|
|
|
|
|
(version "6.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://savannah/avrdude/avrdude-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-06-25 03:16:23 -04:00
|
|
|
|
"0frxg0q09nrm95z7ymzddx7ysl77ilfbdix1m81d9jjpiv5bm64y"))))
|
2014-07-24 07:05:43 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libelf" ,libelf)
|
2016-06-25 03:16:23 -04:00
|
|
|
|
("libusb" ,libusb-compat)
|
2014-07-24 07:05:43 -04:00
|
|
|
|
("libftdi" ,libftdi)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("bison" ,bison)
|
|
|
|
|
("flex" ,flex)))
|
gnu: Use HTTPS for supported nongnu.org home pages.
* gnu/packages/acl.scm (acl)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (dmidecode)[home-page]: Likewise.
* gnu/packages/attr.scm (attr)[home-page]: Likewise.
* gnu/packages/audio.scm (lash)[home-page]: Likewise.
* gnu/packages/avr.scm (avr-libc)[home-page]: Likewise.
* gnu/packages/backup.scm (rdiff-backup, libchop)[home-page]: Likewise.
* gnu/packages/compression.scm (fastjar, lzip, lziprecover, atool)
(lunzip, clzip, lzlib, plzip)[home-page]: Likewise.
* gnu/packages/emacs.scm (geiser, bbdb, m17n-lib, m17n-lib)[home-page]:
Likewise.
* gnu/packages/flashing-tools.scm (avrdude)[home-page]: Likewise.
* gnu/packages/fontutils.scm (libotf)[home-page]: Likewise.
* gnu/packages/game-development.scm (gzochi)[home-page]: Likewise.
* gnu/packages/games.scm (enigma)[home-page]: Likewise.
* gnu/packages/gsasl.scm (libntlm)[home-page]: Likewise.
* gnu/packages/gtk.scm (guile-cairo)[home-page]: Likewise.
* gnu/packages/guile.scm (guile-reader, guile-lib, guile-json)
(guile-redis, g-wrap)[home-page]: Likewise.
* gnu/packages/libunwind.scm (libunwind)[home-page]: Likewise.
* gnu/packages/lout.scm (lout)[home-page]: Likewise.
* gnu/packages/mpd.scm (sonata)[home-page]: Likewise.
* gnu/packages/networking.scm (quagga)[home-page]: Likewise.
* gnu/packages/ratpoison.scm (ratpoison)[home-page]: Likewise.
* gnu/packages/skribilo.scm (skribilo)[home-page]: Likewise.
* gnu/packages/telephony.scm (exosip)[home-page]: Likewise.
* gnu/packages/texinfo.scm (texi2html)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xbindkeys)[home-page]: Likewise.
2018-02-15 22:20:44 -05:00
|
|
|
|
(home-page "https://www.nongnu.org/avrdude/")
|
2014-07-24 07:05:43 -04:00
|
|
|
|
(synopsis "AVR downloader and uploader")
|
|
|
|
|
(description
|
|
|
|
|
"AVRDUDE is a utility to download/upload/manipulate the ROM and
|
|
|
|
|
EEPROM contents of AVR microcontrollers using the in-system programming
|
|
|
|
|
technique (ISP).")
|
2017-08-29 17:54:16 -04:00
|
|
|
|
(license license:gpl2+)))
|
2014-09-29 06:27:30 -04:00
|
|
|
|
|
|
|
|
|
(define-public dfu-programmer
|
|
|
|
|
(package
|
|
|
|
|
(name "dfu-programmer")
|
2015-07-18 06:47:33 -04:00
|
|
|
|
(version "0.7.2")
|
2014-09-29 06:27:30 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2016-07-21 02:35:30 -04:00
|
|
|
|
(uri (string-append "mirror://sourceforge/dfu-programmer/dfu-programmer/"
|
|
|
|
|
version "/dfu-programmer-" version ".tar.gz"))
|
2014-09-29 06:27:30 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-07-18 06:47:33 -04:00
|
|
|
|
"15gr99y1z9vbvhrkd25zqhnzhg6zjmaam3vfjzf2mazd39mx7d0x"))
|
2016-04-08 08:18:13 -04:00
|
|
|
|
(patches (search-patches "dfu-programmer-fix-libusb.patch"))))
|
2014-09-29 06:27:30 -04:00
|
|
|
|
(build-system gnu-build-system)
|
2015-07-18 06:47:33 -04:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2014-09-29 06:27:30 -04:00
|
|
|
|
(inputs
|
|
|
|
|
`(("libusb" ,libusb)))
|
|
|
|
|
(home-page "http://dfu-programmer.github.io/")
|
|
|
|
|
(synopsis "Device firmware update programmer for Atmel chips")
|
|
|
|
|
(description
|
2015-07-16 05:14:13 -04:00
|
|
|
|
"Dfu-programmer is a multi-platform command-line programmer for
|
|
|
|
|
Atmel (8051, AVR, XMEGA & AVR32) chips with a USB bootloader supporting
|
|
|
|
|
ISP.")
|
2017-08-29 17:54:16 -04:00
|
|
|
|
(license license:gpl2+)))
|
2016-05-29 11:28:04 -04:00
|
|
|
|
|
|
|
|
|
(define-public dfu-util
|
|
|
|
|
(package
|
|
|
|
|
(name "dfu-util")
|
|
|
|
|
(version "0.9")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"http://dfu-util.sourceforge.net/releases/dfu-util-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0czq73m92ngf30asdzrfkzraag95hlrr74imbanqq25kdim8qhin"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libusb" ,libusb)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(synopsis "Host side of the USB Device Firmware Upgrade (DFU) protocol")
|
|
|
|
|
(description
|
|
|
|
|
"The DFU (Universal Serial Bus Device Firmware Upgrade) protocol is
|
|
|
|
|
intended to download and upload firmware to devices connected over USB. It
|
|
|
|
|
ranges from small devices like micro-controller boards up to mobile phones.
|
|
|
|
|
With dfu-util you are able to download firmware to your device or upload
|
|
|
|
|
firmware from it.")
|
|
|
|
|
(home-page "http://dfu-util.sourceforge.net/")
|
2017-08-29 17:54:16 -04:00
|
|
|
|
(license license:gpl2+)))
|
2016-06-14 17:14:13 -04:00
|
|
|
|
|
|
|
|
|
(define-public teensy-loader-cli
|
|
|
|
|
;; The repo does not tag versions nor does it use releases, but a commit
|
|
|
|
|
;; message says "Importing 2.1", while the sourcce still says "2.0". So pin
|
|
|
|
|
;; to a fixed commit.
|
|
|
|
|
(let ((commit "f289b7a2e5627464044249f0e5742830e052e360"))
|
|
|
|
|
(package
|
|
|
|
|
(name "teensy-loader-cli")
|
|
|
|
|
(version (string-append "2.1-1." (string-take commit 7)))
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/PaulStoffregen/"
|
|
|
|
|
"teensy_loader_cli/archive/" commit ".tar.gz"))
|
|
|
|
|
(sha256 (base32 "17wqc2q4fa473cy7f5m2yiyb9nq0qw7xal2kzrxzaikgm9rabsw8"))
|
|
|
|
|
(file-name (string-append "teensy-loader-cli-" version ".tar.gz" ))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
`(begin
|
|
|
|
|
;; Remove example flash files and teensy rebooter flash binaries.
|
|
|
|
|
(for-each delete-file (find-files "." "\\.(elf|hex)$"))
|
|
|
|
|
;; Fix the version
|
|
|
|
|
(substitute* "teensy_loader_cli.c"
|
|
|
|
|
(("Teensy Loader, Command Line, Version 2.0\\\\n")
|
|
|
|
|
(string-append "Teensy Loader, Command Line, " ,version "\\n")))
|
|
|
|
|
#t))
|
|
|
|
|
(patches (search-patches "teensy-loader-cli-help.patch"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:tests? #f ;; Makefile has no test target
|
|
|
|
|
#:make-flags (list "CC=gcc" (string-append "PREFIX=" %output))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
|
(install-file "teensy_loader_cli" bin)
|
|
|
|
|
#t))))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libusb-compat" ,libusb-compat)))
|
|
|
|
|
(synopsis "Command line firmware uploader for Teensy development boards")
|
|
|
|
|
(description
|
|
|
|
|
"The Teensy loader program communicates with your Teensy board when the
|
|
|
|
|
HalfKay bootloader is running, so you can upload new programs and run them.
|
|
|
|
|
|
|
|
|
|
You need to add the udev rules to make the Teensy update available for
|
|
|
|
|
non-root users.")
|
|
|
|
|
(home-page "https://www.pjrc.com/teensy/loader_cli.html")
|
2017-08-29 17:54:16 -04:00
|
|
|
|
(license license:gpl3))))
|
2016-11-21 15:13:37 -05:00
|
|
|
|
|
|
|
|
|
(define-public rkflashtool
|
|
|
|
|
(let ((commit "094bd6410cb016e487e2ccb1050c59eeac2e6dd1")
|
|
|
|
|
(revision "1"))
|
|
|
|
|
(package
|
|
|
|
|
(name "rkflashtool")
|
|
|
|
|
(version (string-append "0.0.0-" revision "." (string-take commit 7)))
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/linux-rockchip/rkflashtool.git")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1zkd8zxir3rfg3sy9r20bcnxclnplryn583gqpcr3iad0k3xbah7"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)) ; no configure
|
|
|
|
|
#:make-flags (list (string-append "PREFIX=" %output))
|
|
|
|
|
#:tests? #f)) ; no tests
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libusb" ,libusb)))
|
|
|
|
|
(home-page "https://github.com/linux-rockchip/rkflashtool")
|
|
|
|
|
(synopsis "Tools for flashing Rockchip devices")
|
|
|
|
|
(description "Allows flashing of Rockchip based embedded linux devices.
|
|
|
|
|
The list of currently supported devices is: RK2818, RK2918, RK2928, RK3026,
|
|
|
|
|
RK3036, RK3066, RK312X, RK3168, RK3188, RK3288, RK3368.")
|
2017-08-29 17:54:16 -04:00
|
|
|
|
(license license:bsd-2))))
|
|
|
|
|
|
|
|
|
|
(define-public heimdall
|
|
|
|
|
(package
|
|
|
|
|
(name "heimdall")
|
|
|
|
|
(version "1.4.2")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/Benjamin-Dobell/Heimdall"
|
|
|
|
|
"/archive/v" version ".tar.gz"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1y7gwg3lipyp2zcysm2vid1qg5nwin9bxbvgzs28lz2rya4fz6sq"))))
|
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
2018-03-17 07:23:59 -04:00
|
|
|
|
`(#:build-type "Release"
|
|
|
|
|
#:tests? #f ; no tests
|
2017-08-29 17:54:16 -04:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-invocations
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(substitute* '("heimdall-frontend/source/aboutform.cpp"
|
|
|
|
|
"heimdall-frontend/source/mainwindow.cpp")
|
|
|
|
|
(("start[(]\"heimdall\"")
|
|
|
|
|
(string-append "start(\"" (assoc-ref outputs "out")
|
|
|
|
|
"/bin/heimdall\"")))
|
|
|
|
|
#t))
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((bin (string-append (assoc-ref outputs "out") "/bin"))
|
|
|
|
|
(lib (string-append (assoc-ref outputs "out") "/lib")))
|
|
|
|
|
(install-file "bin/heimdall" bin)
|
|
|
|
|
(install-file "bin/heimdall-frontend" bin)
|
|
|
|
|
(install-file "libpit/libpit.a" lib)
|
|
|
|
|
#t))))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libusb" ,libusb)
|
|
|
|
|
("qtbase" ,qtbase)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(home-page "http://glassechidna.com.au/heimdall/")
|
|
|
|
|
(synopsis "Flash firmware onto Samsung mobile devices")
|
|
|
|
|
(description "@command{heimdall} is a tool suite used to flash firmware (aka
|
|
|
|
|
ROMs) onto Samsung mobile devices. Heimdall connects to a mobile device over
|
|
|
|
|
USB and interacts with low-level software running on the device, known as Loke.
|
|
|
|
|
Loke and Heimdall communicate via the custom Samsung-developed protocol typically
|
|
|
|
|
referred to as the \"Odin 3 protocol\".")
|
|
|
|
|
(license license:expat)))
|
2018-02-13 13:01:43 -05:00
|
|
|
|
|
|
|
|
|
(define-public ifdtool
|
|
|
|
|
(package
|
|
|
|
|
(name "ifdtool")
|
|
|
|
|
(version "4.7")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://review.coreboot.org/p/coreboot")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0nw555i0fm5kljha9h47bk70ykbwv8ddfk6qhz6kfqb79vzhy4h2"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags
|
|
|
|
|
(list "CC=gcc"
|
|
|
|
|
"INSTALL=install"
|
|
|
|
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'chdir
|
|
|
|
|
(lambda _
|
|
|
|
|
(chdir "util/ifdtool")
|
|
|
|
|
#t))
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(delete 'check))))
|
|
|
|
|
(home-page "https://github.com/corna/me_cleaner/")
|
|
|
|
|
(synopsis "Intel Firmware Descriptor dumper")
|
2018-02-15 10:35:39 -05:00
|
|
|
|
(description "This package provides @command{ifdtool}, a program to
|
2018-02-13 13:01:43 -05:00
|
|
|
|
dump Intel Firmware Descriptor data of an image file.")
|
|
|
|
|
(license license:gpl2)))
|
2018-02-13 17:48:09 -05:00
|
|
|
|
|
|
|
|
|
(define-public intelmetool
|
|
|
|
|
(package
|
|
|
|
|
(name "intelmetool")
|
|
|
|
|
(version "4.7")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://review.coreboot.org/p/coreboot")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0nw555i0fm5kljha9h47bk70ykbwv8ddfk6qhz6kfqb79vzhy4h2"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("pciutils" ,pciutils)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags
|
|
|
|
|
(list "CC=gcc"
|
|
|
|
|
"INSTALL=install"
|
|
|
|
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'chdir
|
|
|
|
|
(lambda _
|
|
|
|
|
(chdir "util/intelmetool")
|
|
|
|
|
#t))
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(delete 'check))))
|
|
|
|
|
(home-page "https://github.com/zamaudio/intelmetool")
|
2018-02-15 09:01:39 -05:00
|
|
|
|
(synopsis "Intel Management Engine tools")
|
2018-02-13 17:48:09 -05:00
|
|
|
|
(description "This package provides tools for working with Intel
|
|
|
|
|
Management Engine (ME). You need to @code{sudo rmmod mei_me} and
|
|
|
|
|
@code{sudo rmmod mei} before using this tool. Also pass
|
|
|
|
|
@code{iomem=relaxed} to the Linux kernel command line.")
|
2018-03-08 03:43:15 -05:00
|
|
|
|
(license license:gpl2)
|
|
|
|
|
|
|
|
|
|
;; This is obviously an Intel thing, plus it requires <cpuid.h>.
|
|
|
|
|
(supported-systems '("x86_64-linux" "i686-linux"))))
|
2018-02-13 17:50:11 -05:00
|
|
|
|
|
|
|
|
|
(define-public me-cleaner
|
|
|
|
|
(package
|
|
|
|
|
(name "me-cleaner")
|
|
|
|
|
(version "1.1")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/corna/me_cleaner/"
|
|
|
|
|
"archive/v" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1pgwdqy0jly80nhxmlmyibs343497yjzs6dwfbkcw0l1gjm8i5hw"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
2018-03-08 03:43:15 -05:00
|
|
|
|
(add-after 'unpack 'create-setup.py
|
2018-02-13 17:50:11 -05:00
|
|
|
|
(lambda _
|
|
|
|
|
(call-with-output-file "setup.py"
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(format port "\
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
setup(name='me_cleaner', version='~a', scripts=['me_cleaner.py'])
|
|
|
|
|
" ,version)))
|
|
|
|
|
#t)))))
|
|
|
|
|
(home-page "https://github.com/corna/me_cleaner")
|
|
|
|
|
(synopsis "Intel ME cleaner")
|
|
|
|
|
(description "This package provides tools for disabling Intel
|
|
|
|
|
ME as far as possible (it only edits ME firmware image files).")
|
2018-03-08 03:43:15 -05:00
|
|
|
|
(license license:gpl3+)
|
|
|
|
|
|
|
|
|
|
;; This is an Intel thing.
|
|
|
|
|
(supported-systems '("x86_64-linux" "i686-linux"))))
|
2018-04-05 11:35:39 -04:00
|
|
|
|
|
|
|
|
|
(define-public uefitool
|
|
|
|
|
(package
|
|
|
|
|
(name "uefitool")
|
|
|
|
|
(version "0.22.4")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/LongSoft/UEFITool/archive/"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"05jmhv7jpq08kqbd1477y1lgyjvcic3njrd0bmzdy7v7b7lnhl82"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "qmake" "-makefile")))
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(install-file "UEFITool" (string-append (assoc-ref outputs "out")
|
|
|
|
|
"/bin"))
|
|
|
|
|
#t)))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("qtbase" ,qtbase)))
|
|
|
|
|
(home-page "https://github.com/LongSoft/UEFITool/")
|
|
|
|
|
(synopsis "UEFI image editor")
|
|
|
|
|
(description "@code{uefitool} is a graphical image file editor for
|
|
|
|
|
Unifinished Extensible Firmware Interface (UEFI) images.")
|
|
|
|
|
(license license:bsd-2)))
|