diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-18 23:32:00 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:37 -0500 |
commit | 8b1a6ee69d5290e619b3d9115d130c18347efc44 (patch) | |
tree | 985de1b7d48e395e8e4621f9e9ab443afe207ef3 | |
parent | 5c3d2db4fdb498b67858d96ab215d39a07289074 (diff) | |
download | guix-8b1a6ee69d5290e619b3d9115d130c18347efc44.tar.gz |
gnu: gusb: Add python to native inputs.
Since commit 5d20d7e1369fc7d93de19c0bd219937d697ceae6, meson no longer propagates Python. * gnu/packages/gnome.scm (gusb)[native-inputs]: Add python.
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 3e143f36e6..f4983361b4 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6625,7 +6625,7 @@ DAV, and others.") "-Dvapi=false") '())))) (native-inputs - (list gobject-introspection pkg-config vala)) + (list gobject-introspection pkg-config python vala)) (propagated-inputs ;; Both of these are required by gusb.pc. (list glib libusb)) |