summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAnderson Torres <anderson.torres.8519@gmail.com>2025-12-09 22:23:09 -0300
committerLudovic Courtès <ludo@gnu.org>2025-12-13 23:14:28 +0100
commitea1c9394642ee3dac3f51cbcc99af375c5a721db (patch)
tree2c908c0bbe82c15b6f7d1ebf1011f90746b523cb /gnu
parent805dd1764ed2b34f032075ed962886064c443806 (diff)
gnu: wdiff: Use gexps.
* gnu/packages/patchutils.scm(wdiff)[arguments]: Use gexps. Change-Id: Ife2c051c209948afafe67854a315bdfa1a604f52 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Merges: #4774
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/patchutils.scm26
1 files changed, 14 insertions, 12 deletions
diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm
index 5ab8f58e3a0..7767dda9e10 100644
--- a/gnu/packages/patchutils.scm
+++ b/gnu/packages/patchutils.scm
@@ -534,20 +534,22 @@ Users can login allowing them to change the state of patches.")
(version "1.2.2")
(source
(origin
- (method url-fetch)
- (uri (string-append "mirror://gnu/wdiff/wdiff-"
- version ".tar.gz"))
- (sha256
- (base32
- "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl"))))
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/wdiff/wdiff-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl"))))
(build-system gnu-build-system)
(arguments
- `(#:phases (modify-phases %standard-phases
- (add-before 'check 'fix-sh
- (lambda _
- (substitute* "tests/testsuite"
- (("#! /bin/sh")
- (string-append "#!" (which "sh")))))))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'fix-testsuite
+ (lambda _
+ (substitute* "tests/testsuite"
+ (("#! /bin/sh")
+ (string-append "#!" (which "sh")))))))))
(native-inputs
(list which
;; For some reason wdiff.info gets rebuilt.