diff options
author | Leo Famulari <leo@famulari.name> | 2022-01-20 13:04:59 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2022-01-20 13:07:18 -0500 |
commit | dd2c2625b3817dfbf689fe90b84ca11623233dd9 (patch) | |
tree | 4d33a9599010b7537acfa5cda5311dc8ad197295 /gnu/packages/gnome.scm | |
parent | 3e62af6f3b2efcf3181094be79da237ac9208d46 (diff) | |
download | guix-dd2c2625b3817dfbf689fe90b84ca11623233dd9.tar.gz |
gnu: libratbag: Make Python a regular input.
The built package does keep a reference to Python, checked with `guix gc --references`. This is a followup to commit e415a73d2c11e43f4db3b797ed73ab6ebcc336e0. * gnu/packages/gnome.scm (libratbag)[native-inputs]: Move PYTHON ... [inputs]: ... to here.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4c3791b945..088c368054 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -12058,13 +12058,14 @@ It uses pandoc as back-end for parsing Markdown.") python-wrap) #t)))))) (native-inputs - (list check pkg-config python swig valgrind)) + (list check pkg-config swig valgrind)) (inputs `(("glib" ,glib) ("json-glib" ,json-glib) ("libevdev" ,libevdev) ("libsystemd" ,elogind) ("libunistring" ,libunistring) + ("python" ,python) ("python-evdev" ,python-evdev) ("python-pygobject" ,python-pygobject) ("udev" ,eudev))) |