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