Merge pull request #75344 from worldofpeace/libnotify-propagated
libnotify: propagate glib and gdk-pixbuf
This commit is contained in:
commit
4538eeac6f
@ -1,5 +1,14 @@
|
||||
{ stdenv, fetchurl, meson, ninja, pkgconfig, fetchpatch
|
||||
, glib, gdk-pixbuf, gobject-introspection, gnome3 }:
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, meson
|
||||
, ninja
|
||||
, pkgconfig
|
||||
, fetchpatch
|
||||
, glib
|
||||
, gdk-pixbuf
|
||||
, gobject-introspection
|
||||
, gnome3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libnotify";
|
||||
@ -26,8 +35,17 @@ stdenv.mkDerivation rec {
|
||||
"-Dgtk_doc=false"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection ];
|
||||
buildInputs = [ glib gdk-pixbuf ];
|
||||
nativeBuildInputs = [
|
||||
gobject-introspection
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
gdk-pixbuf
|
||||
glib
|
||||
];
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
@ -40,6 +58,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://developer.gnome.org/notification-spec/;
|
||||
description = "A library that sends desktop notifications to a notification daemon";
|
||||
platforms = platforms.unix;
|
||||
maintainers = gnome3.maintainers;
|
||||
license = licenses.lgpl21;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user