mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
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:
parent
6b83d6060b
commit
eb720afbc1
1 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue