diff options
author | Vagrant Cascadian <vagrant@reproducible-builds.org> | 2022-05-14 17:06:48 -0700 |
---|---|---|
committer | Vagrant Cascadian <vagrant@debian.org> | 2022-05-14 17:16:32 -0700 |
commit | de68877a517ba058f67086d444d7265c9c803679 (patch) | |
tree | bf767de4f8dd5aa07fc4ce60df44fb478d0981e2 /gnu/packages/diffoscope.scm | |
parent | ce1c88a29b56ac7abe8413997464508b46d4f970 (diff) | |
download | guix-de68877a517ba058f67086d444d7265c9c803679.tar.gz |
gnu: libxmlb: Install xb-tool in bin dir.
* gnu/packages/patches/libxmlb-install-xb-tool-into-bindir.patch: New file. * gnu/packages/xml.scm (libxmlb)[source]: Add patch. * gnu/local.mk (dist_patch_DATA): Add patch. * gnu/packages/diffoscope.scm (diffoscope)[arguments]: Add 'xb-tool-external-tool phase.
Diffstat (limited to 'gnu/packages/diffoscope.scm')
-rw-r--r-- | gnu/packages/diffoscope.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/diffoscope.scm b/gnu/packages/diffoscope.scm index da4de83373..b4279a3fb5 100644 --- a/gnu/packages/diffoscope.scm +++ b/gnu/packages/diffoscope.scm @@ -111,6 +111,13 @@ (string-append "['" (which "stat") "',")) (("\\['getfacl',") (string-append "['" (which "getfacl") "',"))))) + (add-after 'unpack 'xb-tool-external-tool + ;; Fixed upstream, remove this phase when updating to + ;; diffoscope 213 + (lambda _ + (substitute* "diffoscope/external_tools.py" + ((".debian.: .libxmlb-dev.") + "\"debian\": \"libxmlb-dev\", \"guix\": \"libxmlb\"")))) (add-after 'build 'build-man-page (lambda* (#:key (make-flags '()) #:allow-other-keys) (apply invoke "make" "-C" "doc" make-flags))) |