summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZheng Junjie <zhengjunjie@iscas.ac.cn>2024-09-09 21:03:25 +0800
committerZheng Junjie <zhengjunjie@iscas.ac.cn>2024-09-09 21:03:50 +0800
commit694cd39fa1a7920b64ee7295560741c4069ca651 (patch)
treeda114ead6210c24736a314d41b68c84d9c61380d
parented6ca2c4136e2f584aefb9378b3e1cddf58fe553 (diff)
gnu: reprotest: Use G-expression.
* gnu/packages/diffoscope.scm (reprotest)[arguments]: Use G-expression. Change-Id: I35d4673e39a449169f5a66265e486d8e45268425
-rw-r--r--gnu/packages/diffoscope.scm28
1 files changed, 14 insertions, 14 deletions
diff --git a/gnu/packages/diffoscope.scm b/gnu/packages/diffoscope.scm
index 4f00f5759d2..7eb1a24c844 100644
--- a/gnu/packages/diffoscope.scm
+++ b/gnu/packages/diffoscope.scm
@@ -279,20 +279,20 @@ install.")
279 xxd)) 279 xxd))
280 (build-system python-build-system) 280 (build-system python-build-system)
281 (arguments 281 (arguments
282 `(#:phases 282 (list #:phases
283 (modify-phases %standard-phases 283 #~(modify-phases %standard-phases
284 (add-after 'install 'install-doc 284 (add-after 'install 'install-doc
285 (lambda* (#:key outputs #:allow-other-keys) 285 (lambda _
286 (let* ((mandir1 (string-append 286 (let* ((mandir1 (string-append
287 (assoc-ref outputs "out") "/share/man/man1")) 287 #$output "/share/man/man1"))
288 (docdir (string-append 288 (docdir (string-append
289 (assoc-ref outputs "out") "/share/doc/" ,name "-" ,version))) 289 #$output "/share/doc/" #$name "-" #$version)))
290 (invoke "make" "-C" "doc") 290 (invoke "make" "-C" "doc")
291 (mkdir-p mandir1) 291 (mkdir-p mandir1)
292 (install-file "doc/reprotest.1" mandir1) 292 (install-file "doc/reprotest.1" mandir1)
293 (mkdir-p docdir) 293 (mkdir-p docdir)
294 (install-file "./README.rst" docdir) 294 (install-file "./README.rst" docdir)
295 (install-file "./README-dev.rst" docdir))))))) 295 (install-file "./README-dev.rst" docdir)))))))
296 (home-page "https://salsa.debian.org/reproducible-builds/reprotest") 296 (home-page "https://salsa.debian.org/reproducible-builds/reprotest")
297 (synopsis "Build software and check it for reproducibility") 297 (synopsis "Build software and check it for reproducibility")
298 (description "Reprotest builds the same source code twice in different 298 (description "Reprotest builds the same source code twice in different