From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:39457) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gm61U-0004za-LR for guix-patches@gnu.org; Tue, 22 Jan 2019 19:04:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gm61T-0001vh-89 for guix-patches@gnu.org; Tue, 22 Jan 2019 19:04:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42530) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gm61T-0001vc-4W for guix-patches@gnu.org; Tue, 22 Jan 2019 19:04:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gm61S-000162-VW for guix-patches@gnu.org; Tue, 22 Jan 2019 19:04:03 -0500 Subject: [bug#34175] [PATCH 3/4] gnu: Add efitools. Resent-Message-ID: From: Danny Milosavljevic Date: Wed, 23 Jan 2019 01:03:03 +0100 Message-Id: <20190123000304.11385-3-dannym@scratchpost.org> In-Reply-To: <20190123000304.11385-1-dannym@scratchpost.org> References: <20190123000035.11320-1-dannym@scratchpost.org> <20190123000304.11385-1-dannym@scratchpost.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34175@debbugs.gnu.org * gnu/packages/efi.scm (efitools): New variable. --- gnu/packages/efi.scm | 62 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/gnu/packages/efi.scm b/gnu/packages/efi.scm index 124a4bef8..cef37b62a 100644 --- a/gnu/packages/efi.scm +++ b/gnu/packages/efi.scm @@ -21,6 +21,7 @@ #:use-module (gnu packages bash) #:use-module (gnu packages linux) #:use-module (gnu packages man) + #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) #:use-module ((guix licenses) #:prefix license:) @@ -115,3 +116,64 @@ environment presented by Intel's EFI.") (description "This package provides tools for signing EFI binaries.") (home-page "https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git/") (license license:gpl3+))) + +(define-public efitools + (package + (name "efitools") + (version "1.9.2") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://git.kernel.org/pub/scm/linux/kernel/git/jejb/efitools.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jabgl2pxvfl780yvghq131ylpf82k7banjz0ksjhlm66ik8gb1i")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No tests exist. + #:make-flags + '("CC=gcc") + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch + (lambda* (#:key inputs outputs #:allow-other-keys) + (substitute* "Make.rules" + (("/usr/include/efi") + (string-append (assoc-ref inputs "gnu-efi") + "/include/efi")) + (("\\$\\(DESTDIR\\)/usr") + (string-append (assoc-ref outputs "out"))) + (("/usr/lib/gnuefi") + (string-append (assoc-ref inputs "gnu-efi") + "/lib"))) + #t)) + (add-after 'unpack 'patch-more-shebangs + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "xxdi.pl" + (("#!.*") + (string-append "#!" + (assoc-ref inputs "perl") + "/bin/perl\n"))) + #t)) + (delete 'configure)))) + (native-inputs + `(("help2man" ,help2man) + ("perl" ,perl) + ("perl-file-slurp" ,perl-file-slurp) + ("sbsigntools" ,sbsigntools))) + (inputs + `(("gnu-efi" ,gnu-efi) + ("openssl" ,openssl))) + (synopsis "EFI tools (key management, variable management)") + (description "This package provides EFI tools for EFI key management +and EFI variable management.") + (home-page "https://blog.hansenpartnership.com/efitools-1-4-with-linux-key-manipulation-utilities-released/") + ;; Programs are under GPL 2. + ;; Library routines (in lib/) are under LGPL 2.1. + ;; Compiling/linking/using OpenSSL is permitted. + (license (list license:gpl2 + license:lgpl2.1))))