summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-09-16 08:29:27 +0300
committerEfraim Flashner <efraim@flashner.co.il>2024-09-16 09:08:38 +0300
commiteb720afbc1d4ebcdec688c799ef71cc44e33d2dc (patch)
tree1b648b8a8ac416f8b3f424e6d92d07bdb0371598
parent6b83d6060b2fc2ec78a485ae6d75432e31bb00fe (diff)
downloadguix-patches-eb720afbc1d4ebcdec688c799ef71cc44e33d2dc.tar
guix-patches-eb720afbc1d4ebcdec688c799ef71cc44e33d2dc.tar.gz
gnu: amsynth: Only build documentation on some platforms.
* gnu/packages/music.scm (amsynth)[native-inputs]: Only include pandoc on supported systems. Change-Id: I7ec78f3ed38feb2ac76292d5b97f622af489b30b
-rw-r--r--gnu/packages/music.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 9ddca37406..075b1bd35d 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -2700,10 +2700,12 @@ special variant of additive synthesis.")
;; 'org.gnome.desktop.interface' is not installed
(list gsettings-desktop-schemas))
(native-inputs
- (list intltool
- pkg-config
- ;; For generating the documentation.
- pandoc))
+ (append (list intltool
+ pkg-config)
+ ;; For generating the documentation.
+ (if (supported-package? pandoc)
+ (list pandoc)
+ '())))
(home-page "https://amsynth.github.io")
(synopsis "Analog modeling synthesizer")
(description