From: Rutherther via Bug reports for GNU Guix <bug-guix@gnu.org>
To: 72967@debbugs.gnu.org
Cc: Andreas Enge <andreas@enge.fr>
Subject: bug#72967: PHP not building
Date: Mon, 02 Sep 2024 17:00:25 +0000 [thread overview]
Message-ID: <87r0a2m1nd.fsf@protonmail.com> (raw)
In-Reply-To: <ZtW_lDDWX_Yf-2wB@jurong>
Hello Andreas,
the main problem is a removed patch inside of core-updates.
See this issue #
A separate problem is that three tests, related to gd,
are not passing.
As a temporary workaround, you can use the attached code to obtain a
buildable php.
Regards,
Rutherther
---
(use-modules
(guix packages)
(gnu packages gd)
(gnu packages php))
(define gd-fixed
(package/inherit gd
(name "gd-fixed")
(propagated-inputs
(package-inputs gd))))
(define php
(package/inherit php
(inputs (modify-inputs (package-inputs php)
(replace "gd" gd-fixed)))))
php
next prev parent reply other threads:[~2024-09-03 3:30 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-02 13:37 bug#72967: PHP not building Andreas Enge
2024-09-02 17:00 ` Rutherther via Bug reports for GNU Guix [this message]
2024-09-02 18:42 ` Andreas Enge
2024-09-02 17:01 ` Rutherther via Bug reports for GNU Guix
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87r0a2m1nd.fsf@protonmail.com \
--to=bug-guix@gnu.org \
--cc=72967@debbugs.gnu.org \
--cc=andreas@enge.fr \
--cc=rutherther@protonmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.