2019-04-21 13:02:46 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, glib, libcanberra-gtk3,
|
2019-06-16 20:59:06 +01:00
|
|
|
libnotify, libwnck3, gtk3, wrapGAppsHook }:
|
2017-09-01 22:02:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-notification-daemon-${version}";
|
2019-04-21 13:02:46 +01:00
|
|
|
version = "1.22.0";
|
2017-09-01 22:02:24 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-21 16:40:55 +01:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-04-21 13:02:46 +01:00
|
|
|
sha256 = "06z3xczhz5diy4kk7b8lrzljrnql6fz0n1jyy916cf8pnnanpg0j";
|
2017-09-01 22:02:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
libcanberra-gtk3
|
2017-09-01 22:02:24 +01:00
|
|
|
libnotify
|
|
|
|
libwnck3
|
2019-03-09 11:41:12 +00:00
|
|
|
gtk3
|
2017-09-01 22:02:24 +01:00
|
|
|
];
|
|
|
|
|
2019-04-21 13:02:46 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
|
2017-09-01 22:02:24 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|