mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: gnome: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/gnome.scm (totem)[inputs]: Add 'bash-minimal'. (d-feet)[inputs]: Likewise. (gnome-session)[inputs]: Likewise. (caribou)[inputs]: Likewise. (authenticator)[inputs]: Likewise. (soundconverter)[inputs]: Likewise. (terminator)[inputs]: Likewise. (gitg)[inputs]: Likewise. (libratbag)[inputs]: Likewise. (piper)[inputs]: Likewise. (parlatype)[inputs]: Likewise. (orcfeeder)[inputs]: Likewise. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I720f33461756950844bfeab04307c8421287f386
This commit is contained in:
parent
f62d286d55
commit
40ae834033
1 changed files with 28 additions and 12 deletions
|
@ -6754,7 +6754,8 @@ (define-public totem
|
|||
(propagated-inputs
|
||||
(list dconf))
|
||||
(inputs
|
||||
(list gtk+
|
||||
(list bash-minimal
|
||||
gtk+
|
||||
gdk-pixbuf
|
||||
at-spi2-core
|
||||
cairo
|
||||
|
@ -7356,7 +7357,8 @@ (define-public d-feet
|
|||
python-pep8
|
||||
xorg-server-for-tests))
|
||||
(inputs
|
||||
(list gobject-introspection
|
||||
(list bash-minimal
|
||||
gobject-introspection
|
||||
gtk+
|
||||
python-wrapper
|
||||
python-pygobject))
|
||||
|
@ -7757,7 +7759,8 @@ (define-public gnome-session
|
|||
pkg-config
|
||||
xmlto))
|
||||
(inputs
|
||||
(list elogind
|
||||
(list bash-minimal
|
||||
elogind
|
||||
gnome-desktop
|
||||
gsettings-desktop-schemas
|
||||
gtk+
|
||||
|
@ -8394,7 +8397,8 @@ (define-public caribou
|
|||
;; caribou-1.0.pc refers to all these.
|
||||
(list libgee libxklavier libxtst gtk+))
|
||||
(inputs
|
||||
`(("clutter" ,clutter)
|
||||
`(("bash" ,bash-minimal) ; for wrap-program
|
||||
("clutter" ,clutter)
|
||||
("dconf" ,dconf)
|
||||
("gtk+-2" ,gtk+-2)
|
||||
("python-pygobject" ,python-pygobject)))
|
||||
|
@ -10481,7 +10485,8 @@ (define-public authenticator
|
|||
`(,gtk+ "bin")
|
||||
pkg-config))
|
||||
(inputs
|
||||
(list gsettings-desktop-schemas
|
||||
(list bash-minimal
|
||||
gsettings-desktop-schemas
|
||||
gtk+
|
||||
libhandy-0.0
|
||||
libsecret
|
||||
|
@ -11860,7 +11865,12 @@ (define-public soundconverter
|
|||
("pkg-config" ,pkg-config)
|
||||
("glib:bin" ,glib "bin")))
|
||||
(inputs
|
||||
(list gtk+ python python-pygobject gstreamer gst-plugins-base))
|
||||
(list bash-minimal
|
||||
gtk+
|
||||
python
|
||||
python-pygobject
|
||||
gstreamer
|
||||
gst-plugins-base))
|
||||
(home-page "https://soundconverter.org/")
|
||||
(synopsis "Convert between audio formats with a graphical interface")
|
||||
(description
|
||||
|
@ -12145,7 +12155,8 @@ (define-public terminator
|
|||
("python-pytest-runner" ,python-pytest-runner)
|
||||
("python-pytest" ,python-pytest)))
|
||||
(inputs
|
||||
`(("cairo" ,cairo)
|
||||
`(("bash" ,bash-minimal) ; for wrap-program
|
||||
("cairo" ,cairo)
|
||||
("dbus-glib" ,dbus-glib)
|
||||
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
||||
("gtk+" ,gtk+)
|
||||
|
@ -12329,7 +12340,8 @@ (define-public gitg
|
|||
(wrap-program prog
|
||||
`("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))))))))
|
||||
(inputs
|
||||
(list glib
|
||||
(list bash-minimal
|
||||
glib
|
||||
gpgme
|
||||
gsettings-desktop-schemas
|
||||
gspell
|
||||
|
@ -13020,7 +13032,8 @@ (define-public libratbag
|
|||
(list valgrind)
|
||||
'())))
|
||||
(inputs
|
||||
`(("glib" ,glib)
|
||||
`(("bash" ,bash-minimal) ; for wrap-program
|
||||
("glib" ,glib)
|
||||
("json-glib" ,json-glib)
|
||||
("libevdev" ,libevdev)
|
||||
("libsystemd" ,elogind)
|
||||
|
@ -13091,7 +13104,8 @@ (define-public piper
|
|||
gobject-introspection
|
||||
pkg-config))
|
||||
(inputs
|
||||
(list adwaita-icon-theme
|
||||
(list bash-minimal
|
||||
adwaita-icon-theme
|
||||
gtk+
|
||||
guile-3.0 ;for wrap-script
|
||||
libratbag
|
||||
|
@ -13192,7 +13206,8 @@ (define-public parlatype
|
|||
pkg-config
|
||||
yelp-tools))
|
||||
(inputs
|
||||
(list gst-plugins-base
|
||||
(list bash-minimal
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
gstreamer
|
||||
gtk+
|
||||
|
@ -13712,7 +13727,8 @@ (define-public ocrfeeder
|
|||
("pkg-config" ,pkg-config)
|
||||
("xmllint" ,libxml2)))
|
||||
(inputs
|
||||
`(("enchant" ,enchant)
|
||||
`(("bash" ,bash-minimal) ; for wrap-program
|
||||
("enchant" ,enchant)
|
||||
("glib" ,glib)
|
||||
("goocanvas" ,goocanvas)
|
||||
("gtk" ,gtk+)
|
||||
|
|
Loading…
Reference in a new issue