Merge pull request #75344 from worldofpeace/libnotify-propagated

libnotify: propagate glib and gdk-pixbuf
This commit is contained in:
Jan Tojnar 2019-12-09 13:39:30 +01:00 committed by GitHub
commit 4538eeac6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
}