diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-05-10 22:28:33 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:37:04 +0100 |
| commit | 789fcc88b0dab78086541ad44e98370774a5d143 (patch) | |
| tree | 0ffa4f294c53724cbd59fbdb8db14d862910e1a1 | |
| parent | 72b09f21b89e3d4dba98d6d4a6937efde6d4fce5 (diff) | |
gnu: distcc: Fix build with Python@3.12.
* gnu/packages/distributed.scm (distcc)[native-inputs]:
Add python-setuptools.
Change-Id: I300be0d8683cf76a78ee706f4f3b14611ccedffb
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/distributed.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/distributed.scm b/gnu/packages/distributed.scm index c1a7718091..65b57b4d3e 100644 --- a/gnu/packages/distributed.scm +++ b/gnu/packages/distributed.scm @@ -46,6 +46,7 @@ #:use-module (gnu packages perl) #:use-module (gnu packages sqlite) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-xyz)) (define-public boinc-client @@ -108,7 +109,11 @@ resources). It supports virtualized, parallel, and GPU-based applications.") "--with-gtk" "--with-auth"))) (native-inputs - (list pkg-config autoconf automake which)) + (list autoconf + automake + pkg-config + python-setuptools + which)) (inputs (list avahi gtk+ |
