diff options
author | Christopher Baines <mail@cbaines.net> | 2022-11-25 10:21:57 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-12-06 11:14:53 +0000 |
commit | 981f01d0cc0581f4ae60f4039be266abad3deab7 (patch) | |
tree | 9f8d313c8a89842fba8fde926d267cf200486b65 /guix | |
parent | 6219491c47f20aef6bc8523110936924e4d3d785 (diff) |
gnu: Resolve derivation lint warnings.
Computing derivations for these systems (i686-gnu and riscv32-linux) fails
with an error like the following:
could not find bootstrap binary 'tar' for system
* gnu/packages/mes.scm (mescc-tools)[supported-systems]: Remove riscv32-linux.
* guix/packages.scm (%hurd-system): Remove i686-gnu.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'guix')
-rw-r--r-- | guix/packages.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 502df7fdd1..8f119d9fa7 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -423,7 +423,7 @@ from forcing GEXP-PROMISE." (define %hurd-systems ;; The GNU/Hurd systems for which support is being developed. - '("i586-gnu" "i686-gnu")) + '("i586-gnu")) (define %cuirass-supported-systems ;; This is the list of system types for which build machines are available. |