diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-12-17 21:59:47 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-17 21:59:47 +0100 |
commit | 7167aa686ce4894770038a17589a52626d284d6f (patch) | |
tree | ee905c7390cd8213cd89a77b6a243d2c4ac52ed9 /gnu/packages | |
parent | c6fa3bc8537f5cff520b8e5f567dc913ad58d66e (diff) | |
download | guix-7167aa686ce4894770038a17589a52626d284d6f.tar.gz guix-7167aa686ce4894770038a17589a52626d284d6f.zip |
gnu: qmk: Add missing inputs.
* gnu/packages/firmware.scm (qmk)[native-inputs]: Add python-setuptools and
python-wheel.
Change-Id: Ia6660c7c99e1d043d8cf9ea1fa108a4895c328db
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/firmware.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index 868be8488c..15734b8f9a 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> ;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com> +;;; Copyright © 2024 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -80,6 +81,7 @@ #:use-module (gnu packages polkit) #:use-module (gnu packages protobuf) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-xyz) #:use-module (gnu packages shells) #:use-module (gnu packages sqlite) @@ -1499,6 +1501,7 @@ corresponding layout." layout)) coreutils-minimal sed util-linux)) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://qmk.fm") (synopsis "Command line utility to manage QMK keyboard firmwares") (description "The QMK CLI provides a @acronym{CLI, command line interface} |