mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: libnotify: Propagate required inputs.
libnotify doesn't propagate other needed libraries for linking against it resulting in pkg-config errors like > Package gdk-pixbuf-2.0 was not found in the pkg-config search path. > Perhaps you should add the directory containing `gdk-pixbuf-2.0.pc' > to the PKG_CONFIG_PATH environment variable * gnu/packages/gnome.scm (libnotify)[inputs]: Move GLIB and GDK-PIXBUF ... [propagated-inputs]: ... here. New field. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
8308f0ba9e
commit
7ef08efa21
1 changed files with 5 additions and 3 deletions
|
@ -1108,10 +1108,12 @@ (define-public libnotify
|
|||
(base32
|
||||
"017wgq9n00hx39n0hm784zn18hl721hbaijda868cm96bcqwxd4w"))))
|
||||
(build-system gnu-build-system)
|
||||
(propagated-inputs
|
||||
`(;; In Requires of libnotify.pc.
|
||||
("gdk-pixbuf" ,gdk-pixbuf)
|
||||
("glib" ,glib)))
|
||||
(inputs
|
||||
`(("gdk-pixbuf" ,gdk-pixbuf)
|
||||
("glib" ,glib)
|
||||
("gtk+" ,gtk+)
|
||||
`(("gtk+" ,gtk+)
|
||||
("libpng" ,libpng)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
|
|
Loading…
Reference in a new issue