diff options
author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2023-03-06 21:23:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-03-21 19:13:34 +0100 |
commit | 2120c768f2366c92d72d15e4044a81c31e57688b (patch) | |
tree | c7b86bc44a0b90e6f49c499752a2254388b8209c /gnu/packages/haskell-xyz.scm | |
parent | 6a23ef814ade3cae0320127bd06732534247a76f (diff) | |
download | guix-2120c768f2366c92d72d15e4044a81c31e57688b.tar guix-2120c768f2366c92d72d15e4044a81c31e57688b.tar.gz |
gnu: python-pypandoc: Upgrade to 1.7.5.
The tests of python-pypandoc 1.6.5 fail; these are fixed in 1.7.5:
https://github.com/JessicaTegner/pypandoc/commit/6670e906dccaddcfcdec228e34e0eaffc20ae791
The tests of later versions of python-pypandoc also fail though:
https://github.com/JessicaTegner/pypandoc/pull/327
Finally, python-pypandoc requires the pandoc data to be embeded in
the binary:
https://github.com/jgm/pandoc/blob/main/INSTALL.md#creating-a-relocatable-binary
* gnu/packages/python-xyz.scm (python-pypandoc): Upgrade to 1.7.5
* gnu/packages/haskel-xyz.scm (pandoc): Embed data files.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/haskell-xyz.scm')
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 86af842980..f2cc60267b 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -8315,6 +8315,9 @@ provided for those who need a drop-in replacement for Markdown.pl.") (name "pandoc") (arguments (list + ;; Create entirely self-contained binary by embedding the data files + ;; in the binary itself. Required for python-pypandoc. + #:configure-flags #~(list "-fembed_data_files") #:phases #~(modify-phases %standard-phases (add-after 'register 'remove-libraries |