[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Debugging missing architecture support
From: |
Ricardo Wurmus |
Subject: |
Re: Debugging missing architecture support |
Date: |
Wed, 14 Feb 2024 21:33:10 +0100 |
User-agent: |
mu4e 1.10.8; emacs 29.1 |
Efraim Flashner <efraim@flashner.co.il> writes:
> As far as tracking back from git-annex to ghc to see that it's not
> supported on aarch64, I'm not sure how you would find that information.
You can try this in guix repl:
--8<---------------cut here---------------start------------->8---
(import (srfi srfi-1)
(guix packages)
(gnu packages))
(define p (specification->package "git-annex"))
(define deps (package-development-inputs p))
(find (lambda (pkg)
(not (member "aarch64-linux" (package-supported-systems pkg))))
(map cadr deps))
--8<---------------cut here---------------end--------------->8---
--
Ricardo