diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-09-16 08:29:27 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-09-16 09:08:38 +0300 |
commit | eb720afbc1d4ebcdec688c799ef71cc44e33d2dc (patch) | |
tree | 1b648b8a8ac416f8b3f424e6d92d07bdb0371598 /gnu | |
parent | 6b83d6060b2fc2ec78a485ae6d75432e31bb00fe (diff) | |
download | guix-eb720afbc1d4ebcdec688c799ef71cc44e33d2dc.tar guix-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
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 10 |
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 |