mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
22 lines
548 B
Nix
22 lines
548 B
Nix
{ lib, mkXfceDerivation, glib, gtk3, libnotify, libxfce4ui, libxfce4util
|
|
, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-notifyd";
|
|
version = "0.6.2";
|
|
|
|
sha256 = "sha256-Gomehef68+mOgGFDaH48jG51nbaV4ruN925h71w7FuE=";
|
|
|
|
buildInputs = [ gtk3 glib libnotify libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
configureFlags = [
|
|
"--enable-dbus-start-daemon"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple notification daemon for Xfce";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|