diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-01-25 12:56:25 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:45 +0200 |
commit | 01d32e4744bf39e974674d4eb20b20310ac8db07 (patch) | |
tree | 8cbe0c80dc67f2b9733223f4c4688d0acf848693 | |
parent | c380428261284987a92752480cb9c1a809393dfb (diff) | |
download | guix-01d32e4744bf39e974674d4eb20b20310ac8db07.tar guix-01d32e4744bf39e974674d4eb20b20310ac8db07.tar.gz |
gnu: bluez: Fix build.
This is a follow-up to commit
23aa24058ad932bf48e4258566ee94fea86eef3d
gnu: bluez: Update to 5.72.
and fixes
GEN client/bluetoothctl-player.1
client/bluetoothctl.rst:342: (WARNING/2) Cannot analyze code. Pygments package not found.
Exiting due to level-2 (WARNING) system message.
GEN client/bluetoothctl-scan.1
make[1]: *** [Makefile:13732: client/bluetoothctl.1] Error 1
* gnu/packages/linux.scm (bluez)[native-inputs]: Add python and
python-pygments.
Change-Id: Ifd4db91592012a904be21ec6d8df63200e958c58
-rw-r--r-- | gnu/packages/linux.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 453e0e630f..7580083ffc 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -42,7 +42,7 @@ ;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz> ;;; Copyright © 2020 Chris Marusich <cmmarusich@gmail.com> ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> -;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org> +;;; Copyright © 2020, 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com> ;;; Copyright © 2020 John Soo <jsoo1@asu.edu> ;;; Copyright © 2020, 2022 Michael Rohleder <mike@rohleder.de> @@ -6122,7 +6122,9 @@ Bluetooth audio output devices like headphones or loudspeakers.") (native-inputs (list gettext-minimal pkg-config - python-docutils)) + python + python-docutils + python-pygments)) (inputs (list glib dbus eudev libical readline)) (home-page "https://www.bluez.org/") |