gnu: amsynth: Only build documentation on some platforms.

* gnu/packages/music.scm (amsynth)[native-inputs]: Only include pandoc
on supported systems.

Change-Id: I7ec78f3ed38feb2ac76292d5b97f622af489b30b
This commit is contained in:
Efraim Flashner 2024-09-16 08:29:27 +03:00
parent 6b83d6060b
commit eb720afbc1
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2700,10 +2700,12 @@ (define-public amsynth
;; '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