Skip to content
Snippets Groups Projects
Unverified Commit aaeb2b34 authored by Vagrant Cascadian's avatar Vagrant Cascadian Committed by Vagrant Cascadian
Browse files

gnu: diffoscope: Adjust native-inputs for architecture limitations.

* gnu/packages/diffoscope (diffoscope)[native-inputs]: Only add ghc on
  x86_64-linux and i686-linux.
  Only add openjdk and enjarify on x86_64-linux.
parent 265f30c9
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,8 @@ (define-module (gnu packages diffoscope) ...@@ -63,7 +63,8 @@ (define-module (gnu packages diffoscope)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix utils)) #:use-module (guix utils)
#:use-module (ice-9 match))
(define-public diffoscope (define-public diffoscope
(let ((version "125")) (let ((version "125"))
...@@ -165,6 +166,22 @@ (define-public diffoscope ...@@ -165,6 +166,22 @@ (define-public diffoscope
("python-chardet" ,python-chardet) ("python-chardet" ,python-chardet)
("python-binwalk" ,python-binwalk) ("python-binwalk" ,python-binwalk)
;; test suite skips tests when tool is missing ;; test suite skips tests when tool is missing
,@(match (%current-system)
;; ghc is only available on x86 currently.
((or "x86_64-linux" "i686-linux")
`(("ghc" ,ghc)))
(_
`()))
,@(match (%current-system)
;; openjdk and dependent packages are only
;; available on x86_64 currently.
((or "x86_64-linux")
`(("enjarify" ,enjarify)
;; no unversioned openjdk available
("openjdk:jdk" ,openjdk12 "jdk")
))
(_
`()))
("abootimg" ,abootimg) ("abootimg" ,abootimg)
("bdb" ,bdb) ("bdb" ,bdb)
("binutils" ,binutils) ("binutils" ,binutils)
...@@ -175,10 +192,8 @@ (define-public diffoscope ...@@ -175,10 +192,8 @@ (define-public diffoscope
("docx2txt" ,docx2txt) ("docx2txt" ,docx2txt)
("dtc" ,dtc) ("dtc" ,dtc)
("e2fsprogs" ,e2fsprogs) ("e2fsprogs" ,e2fsprogs)
("enjarify" ,enjarify)
("ffmpeg" ,ffmpeg) ("ffmpeg" ,ffmpeg)
("gettext" ,gettext-minimal) ("gettext" ,gettext-minimal)
("ghc" ,ghc)
("ghostscript" ,ghostscript) ("ghostscript" ,ghostscript)
("giflib:bin" ,giflib "bin") ("giflib:bin" ,giflib "bin")
("gnumeric" ,gnumeric) ("gnumeric" ,gnumeric)
...@@ -190,8 +205,6 @@ (define-public diffoscope ...@@ -190,8 +205,6 @@ (define-public diffoscope
("mono" ,mono) ("mono" ,mono)
("ocaml" ,ocaml) ("ocaml" ,ocaml)
("odt2txt" ,odt2txt) ("odt2txt" ,odt2txt)
;; no unversioned openjdk available
("openjdk:jdk" ,openjdk12 "jdk")
("openssh" ,openssh) ("openssh" ,openssh)
("pgpdump" ,pgpdump) ("pgpdump" ,pgpdump)
("poppler" ,poppler) ("poppler" ,poppler)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment