git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
54 lines
888 B
Nix
54 lines
888 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, exo
|
|
, garcon
|
|
, gobject-introspection
|
|
, gtk3
|
|
, libdbusmenu-gtk3
|
|
, libwnck
|
|
, libxfce4ui
|
|
, libxfce4util
|
|
, tzdata
|
|
, vala
|
|
, xfconf
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "xfce4-panel";
|
|
version = "4.18.6";
|
|
|
|
sha256 = "sha256-eQLz/LJIx2WkzcSLytRdJdhtGv0woT48mdqG7eHB0U4=";
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
exo
|
|
garcon
|
|
libdbusmenu-gtk3
|
|
libxfce4ui
|
|
libwnck
|
|
xfconf
|
|
tzdata
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gtk3
|
|
libxfce4util
|
|
];
|
|
|
|
patches = [ ./xfce4-panel-datadir.patch ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace plugins/clock/clock.c \
|
|
--replace-fail "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Panel for the Xfce desktop environment";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|