From 3e30ec4255d2f6208245c5f04e90aace45e17e2b Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Mon, 11 May 2026 15:10:42 +0900 Subject: gnu: Remove efilinux. * gnu/packages/efi.scm (efilinux): Delete variable. Change-Id: I742bc3bcc36984f69dddd3c527aa077b07ee5aa0 Closes: https://codeberg.org/guix/guix/issues/7806 --- gnu/packages/efi.scm | 45 --------------------------------------------- 1 file changed, 45 deletions(-) diff --git a/gnu/packages/efi.scm b/gnu/packages/efi.scm index bab3fd6cde..155e365f41 100644 --- a/gnu/packages/efi.scm +++ b/gnu/packages/efi.scm @@ -204,48 +204,3 @@ and EFI variable management.") ;; Library routines (in lib/) are under LGPL 2.1. ;; Compiling/linking/using OpenSSL is permitted. (license (list license:gpl2 license:lgpl2.1)))) - -(define-public efilinux - (package - (name "efilinux") - (version "1.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mfleming/efilinux") - (commit (string-append "efilinux-" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0b4nxzr3wl5v4b52r79iw1arfgasz26xb38r2blw9v2qz2s1q9w2")))) - (build-system gnu-build-system) - (arguments - `(#:make-flags - (list "CC=gcc" - ,@(match (%current-system) - ("aarch64-linux" - '("ARCH=aarch64")) - ("armhf-linux" - '("ARCH=arm")) - (_ '())) - (string-append "INCDIR=" (assoc-ref %build-inputs "gnu-efi") - "/include") - (string-append "LIBDIR=" (assoc-ref %build-inputs "gnu-efi") - "/lib")) - #:tests? #f ; No tests exist. - #:phases - (modify-phases %standard-phases - (delete 'configure) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (install-file "efilinux.efi" - (string-append (assoc-ref outputs "out") - "/libexec")) - #t))))) - (inputs - (list gnu-efi)) - (synopsis "Minimal Linux loader for UEFI") - (description "This package provides a minimal Linux loader as an UEFI -program.") - (home-page "https://github.com/mfleming/efilinux") - (license license:bsd-2))) -- cgit v1.3