libnotify: nixpkgs-fmt, add maintainers

wip/yesman
worldofpeace 5 years ago
parent 79d45c42ac
commit 8f2e47ea4f
  1. 27
      pkgs/development/libraries/libnotify/default.nix

@ -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 ];
propagatedBuildInputs = [ 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…
Cancel
Save