1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02:00

gnu: owl: Only build with pandoc on supported systems.

* gnu/packages/scheme.scm (owl)[native-inputs]: Only use pandoc as an
input on systems where pandoc is supported.

Change-Id: I9a7727789d303b07834a689ce917d7ac88172212
This commit is contained in:
Efraim Flashner
2024-10-28 11:32:30 +02:00
parent f85e9b104a
commit 5034f2d45c
+5 -1
View File
@@ -1301,7 +1301,11 @@ Gerbil code within Emacs.")))
"tests/hashbang.scm"
"tests/theorem-rand.scm")))))
#:test-target "test"))
(native-inputs (list pandoc which))
(native-inputs
(append (if (supported-package? pandoc)
(list pandoc)
'())
(list which)))
(home-page "https://haltp.org/owl")
(synopsis "Functional Scheme dialect")
(description