summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAnderson Torres <anderson.torres.8519@gmail.com>2025-07-27 21:09:21 -0300
committerAndreas Enge <andreas@enge.fr>2025-08-27 10:13:05 +0200
commit4f399ba7559dd3860279ca57e48371f85bed2d97 (patch)
treee724552e045094e92dc2419090dd87c17d721ec9 /gnu
parent6d08d9f6864179b78b4b88fe63191df03d4a3576 (diff)
gnu: Remove apple-bash.
Neither version 125 nor 140 (the most recent upstream) compile. * gnu/packages/apple.scm: Remove file. * gnu/local.mk (GNU_SYSTEM_MODULES), po/packages/POTFILES.in: Remove reference to apple.scm. Change-Id: I206419a972c46676b9203cca90f8777d2560fad7 Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/local.mk1
-rw-r--r--gnu/packages/apple.scm59
2 files changed, 0 insertions, 60 deletions
diff --git a/gnu/local.mk b/gnu/local.mk
index dc9c2069d42..10411865753 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -147,7 +147,6 @@ GNU_SYSTEM_MODULES = \
%D%/packages/anthy.scm \
%D%/packages/antivirus.scm \
%D%/packages/apl.scm \
- %D%/packages/apple.scm \
%D%/packages/apparmor.scm \
%D%/packages/appimage.scm \
%D%/packages/apr.scm \
diff --git a/gnu/packages/apple.scm b/gnu/packages/apple.scm
deleted file mode 100644
index b59eee1802c..00000000000
--- a/gnu/packages/apple.scm
+++ /dev/null
@@ -1,59 +0,0 @@
-;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2022 B. Wilson <elaexuotee@wilsonb.com>
-;;;
-;;; 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/>.
-
-(define-module (gnu packages apple)
- #:use-module (gnu packages bison)
- #:use-module (guix build-system gnu)
- #:use-module (guix packages)
- #:use-module (guix git-download)
- #:use-module ((guix licenses) #:prefix license:))
-
-(define-public apple-bash
- (package
- (name "apple-bash")
- (version "125")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/apple-oss-distributions/bash.git")
- (commit (string-append "bash-" version))))
- (sha256
- (base32 "1d4s1z57yiyhgb6i22kb9al31j1fv9a4rp1bb747ny6grdvc4919"))
- (file-name (git-file-name name version))))
- (build-system gnu-build-system)
- (native-inputs (list bison))
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (add-before 'configure 'pre-configure
- (lambda _
- ;; An XCode project wraps the actual bash source.
- (chdir "bash-3.2")
- ;; The xlocale.h header was removed in glibc 2.26.
- (substitute* "lib/glob/smatch.c"
- (("xlocale.h") "locale.h"))
- ;; EBADEXEC is XNU-specific.
- (substitute* "execute_cmd.c"
- (("EBADEXEC") "ENOEXEC")))))))
- (home-page "https://github.com/apple-oss-distributions/bash/")
- (synopsis "Bash used on Apple macOS systems")
- (description
- "This is the version of Bash, forked from GNU Bash 3.2, released on Apple
-macOS systems.")
- (license license:gpl2+)))