aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/apple.scm
blob: b59eee1802cfb3d0f19cc06ffd9c5375c9565268 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;;; 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+)))
(intel-mpi-benchmarks/openmpi): Update to 2021.3. Ludovic Courtès 2023-10-04gnu: phoronix-test-suite: Do not propagate gcc-toolchain....* gnu/packages/benchmark.scm (gcc-toolchain*): Replace gcc-toolchain-12 reference with gcc-toolchain. * gnu/packages/benchmark.scm (phoronix-test-suite): Augment wrap-binary phase with GCC variables. [propagated-inputs]: Delete field, moving gcc-toolchain to... [inputs]: ... here. [search-paths]: New field. Maxim Cournoyer 2023-06-01gnu: fio: Update to 3.35....* gnu/packages/benchmark.scm (fio): Update to 3.35. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Greg Hogan 2023-04-30gnu: sysbench: Build with mariadb....* gnu/packages/benchmark.scm (sysbench)[arguments]: Remove mysql flag. [inputs]: Remove mysql. Add mariadb:dev. Efraim Flashner 2023-04-21gnu: sysbench: Remove fix-docbook phase....* gnu/packages/benchmark.scm (sysbench) [arguments]: Remove the fix-docbook phase. Maxim Cournoyer 2023-04-21gnu: sysbench: Fix test suite....* gnu/packages/benchmark.scm (sysbench) [arguments]: Patch egrep in the patch-test-runner phase. Maxim Cournoyer 2023-03-31Merge branch 'master' into stagingMaxim Cournoyer 2023-03-31gnu: python-locust: Update to 2.15.1....* gnu/packages/benchmark.scm (python-locust): Update to 2.15.1. [arguments]: Delete relax-requirements phase. Add increase-resource-limits. Update check phase. [propagated-inputs]: Remove python-jinja2. Maxim Cournoyer 2023-03-30services: base: Deprecate 'pam-limits-service' procedure....* doc/guix.texi (Base Services): Replace pam-limits-service with pam-limits-service-type. * gnu/packages/benchmark.scm (python-locust)[description]: Update index anchor to manual. * gnu/services/base.scm (pam-limits-service-type): Set default value. (pam-limits-service): Deprecate procedure. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Bruno Victal 2023-01-08gnu: Add vkmark....* gnu/packages/benchmark.scm (vkmark): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Tomasz Jeneralczyk