aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-10-28 11:32:30 +0200
committerEfraim Flashner <efraim@flashner.co.il>2024-10-28 11:33:47 +0200
commit5034f2d45c2a307ebaad6e99957f3b3a4d8cdd0a (patch)
treefa3199d576e466a99165fd6c8f70a66adba9d003 /gnu/packages
parentf85e9b104a7d1d910a8bff98f8e37b9ffbede6ed (diff)
downloadguix-5034f2d45c2a307ebaad6e99957f3b3a4d8cdd0a.tar
guix-5034f2d45c2a307ebaad6e99957f3b3a4d8cdd0a.tar.gz
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
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/scheme.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm
index bbd7ee7bfa..c38d4256af 100644
--- a/gnu/packages/scheme.scm
+++ b/gnu/packages/scheme.scm
@@ -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