[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/38: gnu: perl: Support cross-building for the 64bit Hurd.
From: |
guix-commits |
Subject: |
35/38: gnu: perl: Support cross-building for the 64bit Hurd. |
Date: |
Thu, 7 Nov 2024 10:56:11 -0500 (EST) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 6db7c5f9237b685af26e36eb14982f7a4dddd37b
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu Nov 7 13:16:25 2024 +0100
gnu: perl: Support cross-building for the 64bit Hurd.
* gnu/packages/cross-base.scm (perl)[native-inputs]: When cross-building for
the 64bit Hurd, use perl-cross-1.6.
Change-Id: I4a77f51a6757ad4aed9bcca8f9bbbf2cbd162e15
---
gnu/packages/perl.scm | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index faaac13bf1..2ea7c49419 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -248,14 +248,18 @@
(native-inputs
(if (%current-target-system)
`(("perl-cross"
- ,(origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/arsv/perl-cross")
- (commit "1.4")))
- (file-name (git-file-name "perl-cross" "1.4"))
- (sha256
- (base32
"1ydjvlhrk06ccyj4bm8by7xk90krsll2k380mc3x1mhfrc7r9gzy")))))
+ ,(let ((version (if (target-hurd64?) "1.6" "1.4"))
+ (hash
+ (if (target-hurd64?)
+ "0s06lkx5b79r9cn6pm5p6d4jbdjq7wg7rjr75nw5xdhw1z3wnl2d"
+
"1ydjvlhrk06ccyj4bm8by7xk90krsll2k380mc3x1mhfrc7r9gzy")))
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/arsv/perl-cross")
+ (commit version)))
+ (file-name (git-file-name "perl-cross" version))
+ (sha256 (base32 hash))))))
'()))
(native-search-paths (list (search-path-specification
(variable "PERL5LIB")
- branch hurd-team created (now 66bfcfc1fa), guix-commits, 2024/11/07
- 03/38: bootloader: grub: Remove hardcoded partition number for the Hurd., guix-commits, 2024/11/07
- 01/38: reconfigure: Use native bootloader package for running the installer., guix-commits, 2024/11/07
- 02/38: guix system: When installing the Hurd, create essential devices., guix-commits, 2024/11/07
- 12/38: installer: Use "partitioning-page" consistently., guix-commits, 2024/11/07
- 17/38: installer: Add static-networking template., guix-commits, 2024/11/07
- 10/38: installer: Remove unused (newt) imports., guix-commits, 2024/11/07
- 09/38: maint: Add installer dependencies to the manifest., guix-commits, 2024/11/07
- 38/38: gnu: libpciaccess: Support the 64bit Hurd., guix-commits, 2024/11/07
- 22/38: gnu: Add basic support for x86_64-pc-gnu target, aka 64bit Hurd., guix-commits, 2024/11/07
- 35/38: gnu: perl: Support cross-building for the 64bit Hurd.,
guix-commits <=
- 05/38: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2024/11/07
- 07/38: hurd-boot: Support second boot., guix-commits, 2024/11/07
- 08/38: system: examples: Add devel-hurd.tmpl., guix-commits, 2024/11/07
- 06/38: gnu: hurd: Support second boot., guix-commits, 2024/11/07
- 04/38: system: hurd: Remove qemu networking from %base-services/hurd., guix-commits, 2024/11/07
- 16/38: installer: Add "Kernel" page to select the Hurd., guix-commits, 2024/11/07
- 13/38: installer: Fix file-name typos., guix-commits, 2024/11/07
- 19/38: gnu: gnumach: Update to v1.8+git20240406., guix-commits, 2024/11/07
- 20/38: gnu: hurd: Update to v0.9.git20240714., guix-commits, 2024/11/07
- 24/38: gnu: elfutils: Fix build for 64bit Hurd., guix-commits, 2024/11/07