summaryrefslogtreecommitdiff
path: root/gnu/packages/diffoscope.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/diffoscope.scm')
-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