mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
39 lines
963 B
Nix
39 lines
963 B
Nix
{ lib, stdenv, fetchurl, pkg-config, gettext, glib, libcanberra-gtk3,
|
|
libnotify, libwnck3, gtk3, libxml2, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mate-notification-daemon";
|
|
version = "1.24.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1ybzr8mni5pgrspf8hqnisd0r0hwdlgk7n5mzsh7xisbkgivpw2b";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
libxml2 # for xmllint
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libcanberra-gtk3
|
|
libnotify
|
|
libwnck3
|
|
gtk3
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Notification daemon for MATE Desktop";
|
|
homepage = "https://github.com/mate-desktop/mate-notification-daemon";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|