2019-04-21 12:02:46 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, glib, libcanberra-gtk3,
|
2019-06-16 19:59:06 +00:00
|
|
|
libnotify, libwnck3, gtk3, wrapGAppsHook }:
|
2017-09-01 21:02:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mate-notification-daemon";
|
2019-09-23 10:00:58 +00:00
|
|
|
version = "1.22.1";
|
2017-09-01 21:02:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 22:37:37 +00:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-23 10:00:58 +00:00
|
|
|
sha256 = "0f8m3m94iqj2x61dzwwvwq2qlsl2ma8pqr6rfns5pzd0nj0waz0m";
|
2017-09-01 21:02:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
libcanberra-gtk3
|
2017-09-01 21:02:24 +00:00
|
|
|
libnotify
|
|
|
|
libwnck3
|
2019-03-09 11:41:12 +00:00
|
|
|
gtk3
|
2017-09-01 21:02:24 +00:00
|
|
|
];
|
|
|
|
|
2019-04-21 12:02:46 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
|
2017-09-01 21:02:24 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Notification daemon for MATE";
|
|
|
|
homepage = https://github.com/mate-desktop/mate-notification-daemon;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|