summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVagrant Cascadian <vagrant@reproducible-builds.org>2024-04-19 11:25:51 -0700
committerChristopher Baines <mail@cbaines.net>2024-04-23 14:31:58 +0100
commitaf969a594a2972b230caa9666fb83a2011b5d464 (patch)
tree70da997215b3946a6def2c8061c466beb4184c47
parent6f50fc7dbc1e68415fd5c7ba384c71c60a6c92ec (diff)
gnu: diffoscope: Update to 264.
* gnu/packages/diffoscope.scm (diffoscope): Update to 264. [native-inputs]: Fix architecture specific conditional for "enjarify" Signed-off-by: Christopher Baines <mail@cbaines.net>
-rw-r--r--gnu/packages/diffoscope.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/diffoscope.scm b/gnu/packages/diffoscope.scm
index 8106a6d2585..fbcf3a36f27 100644
--- a/gnu/packages/diffoscope.scm
+++ b/gnu/packages/diffoscope.scm
@@ -75,7 +75,7 @@
75(define-public diffoscope 75(define-public diffoscope
76 (package 76 (package
77 (name "diffoscope") 77 (name "diffoscope")
78 (version "263") 78 (version "264")
79 (source 79 (source
80 (origin 80 (origin
81 (method git-fetch) 81 (method git-fetch)
@@ -84,7 +84,7 @@
84 (commit version))) 84 (commit version)))
85 (file-name (git-file-name name version)) 85 (file-name (git-file-name name version))
86 (sha256 86 (sha256
87 (base32 "1bq45gyn214hf9brnn5xlj9xvcg6p0yr8cc2p153f93pgzsyqlg4")))) 87 (base32 "1m2jrg0y283m07gml7nd6fy4x827i93bj23varjn3add4kixxr57"))))
88 (build-system python-build-system) 88 (build-system python-build-system)
89 (arguments 89 (arguments
90 (list 90 (list
@@ -233,9 +233,9 @@
233 ;; openjdk and dependent packages are only 233 ;; openjdk and dependent packages are only
234 ;; available on x86_64 currently. 234 ;; available on x86_64 currently.
235 ((or "x86_64-linux") 235 ((or "x86_64-linux")
236 (list enjarify)
237 ;; No unversioned openjdk available. 236 ;; No unversioned openjdk available.
238 (list `(,openjdk12 "jdk"))) 237 (list `(,openjdk12 "jdk")
238 enjarify))
239 (_ '())))) 239 (_ '()))))
240 (home-page "https://diffoscope.org/") 240 (home-page "https://diffoscope.org/")
241 (synopsis "Compare files, archives, and directories in depth") 241 (synopsis "Compare files, archives, and directories in depth")