9abff7a85e
Please, comment on #296.
22 lines
606 B
Nix
22 lines
606 B
Nix
{ v, h, stdenv, fetchXfce, pkgconfig, intltool
|
|
, gtk , libxfce4util, libxfce4ui, xfconf }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xfce4-notifyd-${v}";
|
|
src = fetchXfce.app name h;
|
|
|
|
buildInputs = [ pkgconfig intltool gtk libxfce4util libxfce4ui xfconf ];
|
|
|
|
preFixup = ''
|
|
rm $out/share/icons/hicolor/icon-theme.cache
|
|
# to be able to run the daemon we need it in PATH
|
|
cp -l $out/lib/xfce4/notifyd/xfce4-notifyd $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://goodies.xfce.org/projects/applications/xfce4-notifyd;
|
|
description = "Notification daemon for Xfce";
|
|
license = "GPLv2+";
|
|
};
|
|
}
|