2020-02-14 06:09:49 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, glib, libcanberra-gtk3,
|
2020-02-12 09:51:21 -08:00
|
|
|
libnotify, libwnck3, gtk3, libxml2, wrapGAppsHook }:
|
2017-09-01 14:02:24 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mate-notification-daemon";
|
2020-09-18 08:15:21 -07:00
|
|
|
version = "1.24.1";
|
2017-09-01 14:02:24 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 14:37:37 -08:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-09-18 08:15:21 -07:00
|
|
|
sha256 = "1ybzr8mni5pgrspf8hqnisd0r0hwdlgk7n5mzsh7xisbkgivpw2b";
|
2017-09-01 14:02:24 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2020-02-14 06:09:49 -08:00
|
|
|
gettext
|
2020-02-12 09:51:21 -08:00
|
|
|
libxml2 # for xmllint
|
2017-09-01 14:02:24 -07:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-24 18:23:58 -08:00
|
|
|
libcanberra-gtk3
|
2017-09-01 14:02:24 -07:00
|
|
|
libnotify
|
|
|
|
libwnck3
|
2019-03-09 03:41:12 -08:00
|
|
|
gtk3
|
2017-09-01 14:02:24 -07:00
|
|
|
];
|
|
|
|
|
2019-04-21 05:02:46 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
|
2020-02-14 13:52:51 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-09-01 14:02:24 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-02-12 09:51:21 -08:00
|
|
|
description = "Notification daemon for MATE Desktop";
|
|
|
|
homepage = "https://github.com/mate-desktop/mate-notification-daemon";
|
2017-09-01 14:02:24 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|