gnu: gnome-screenshot: Add python to native inputs.

* gnu/packages/gnome.scm (gnome-screenshot)[native-inputs]: Add python.
This commit is contained in:
Maxim Cournoyer 2021-12-27 23:59:13 -05:00
parent ff9c684ddf
commit 32d38a7142
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -9239,14 +9239,14 @@ (define-public gnome-screenshot
;; Don't create 'icon-theme.cache'.
(lambda _
(substitute* "build-aux/postinstall.py"
(("gtk-update-icon-cache") "true"))
#t)))))
(("gtk-update-icon-cache") "true")))))))
(native-inputs
`(("glib:bin" ,glib "bin") ; for glib-compile-schemas, etc.
("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
("intltool" ,intltool)
("appstream-glib" ,appstream-glib)
("pkg-config" ,pkg-config)))
("pkg-config" ,pkg-config)
("python" ,python)))
(inputs
(list gtk+ libcanberra libhandy libx11 libxext))
(home-page "https://gitlab.gnome.org/GNOME/gnome-screenshot")