unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#31070] [PATCH] gnu: Add uefitool.
@ 2018-04-05 15:36 Danny Milosavljevic
  2018-04-08 20:46 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Danny Milosavljevic @ 2018-04-05 15:36 UTC (permalink / raw)
  To: 31070

* gnu/packages/flashing-tools.scm (uefitool): New variable.
---
 gnu/packages/flashing-tools.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index dd0eaa5df..9031faca6 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -445,3 +445,34 @@ ME as far as possible (it only edits ME firmware image files).")
 
     ;; This is an Intel thing.
     (supported-systems '("x86_64-linux" "i686-linux"))))
+
+(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 UEFI image editor.")
+    (license license:bsd-2)))

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [bug#31070] [PATCH] gnu: Add uefitool.
  2018-04-05 15:36 [bug#31070] [PATCH] gnu: Add uefitool Danny Milosavljevic
@ 2018-04-08 20:46 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2018-04-08 20:46 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 31070

Hi,

Danny Milosavljevic <dannym@scratchpost.org> skribis:

> * gnu/packages/flashing-tools.scm (uefitool): New variable.
> ---
>  gnu/packages/flashing-tools.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
> index dd0eaa5df..9031faca6 100644
> --- a/gnu/packages/flashing-tools.scm
> +++ b/gnu/packages/flashing-tools.scm
> @@ -445,3 +445,34 @@ ME as far as possible (it only edits ME firmware image files).")
>  
>      ;; This is an Intel thing.
>      (supported-systems '("x86_64-linux" "i686-linux"))))

[...]

> +    (synopsis "UEFI image editor")
> +    (description "@code{uefitool} is a graphical UEFI image editor.")

Could you expand the acronym somewhere?

Also perhaps we need a ‘supported-systems’ field?

OK with changes along these lines, thank you!

Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-04-08 20:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-05 15:36 [bug#31070] [PATCH] gnu: Add uefitool Danny Milosavljevic
2018-04-08 20:46 ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).