32aeaf4888
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mate-notification-daemon/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/fgg4hxmh9x48wbxh0y07593193427q3n-mate-notification-daemon-1.20.1/bin/mate-notification-properties had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/fgg4hxmh9x48wbxh0y07593193427q3n-mate-notification-daemon-1.20.1/bin/.mate-notification-properties-wrapped had a zero exit code or showed the expected version - 0 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 1.20.1 with grep in /nix/store/fgg4hxmh9x48wbxh0y07593193427q3n-mate-notification-daemon-1.20.1 - directory tree listing: https://gist.github.com/7f852125c1c6ce059b96b1278be2dc41 - du listing: https://gist.github.com/2fda2f0e9255e9383b2611f3eb16f78c
35 lines
846 B
Nix
35 lines
846 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, dbus-glib, libcanberra-gtk3,
|
|
libnotify, libwnck3, gnome3, mate, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-notification-daemon-${version}";
|
|
version = "1.20.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0hwswgc3i6d7zvmj0as95xjjw431spxkf1d37mxwaf6j80gx0p78";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus-glib
|
|
libcanberra-gtk3
|
|
libnotify
|
|
libwnck3
|
|
gnome3.gtk
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|