nixpkgs/pkgs/desktops/xfce/core/xfce4-panel/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
883 B
Nix
Raw Normal View History

2021-11-28 19:51:44 +01:00
{ lib
, mkXfceDerivation
2020-12-28 22:17:56 +01:00
, exo
, garcon
, gobject-introspection
, gtk3
, libdbusmenu-gtk3
2021-06-23 20:22:04 +02:00
, libwnck
2020-12-28 22:17:56 +01:00
, libxfce4ui
, libxfce4util
, tzdata
, vala
, xfconf
}:
2017-12-17 16:02:52 +01:00
2019-08-13 23:52:01 +02:00
mkXfceDerivation {
2017-12-17 16:02:52 +01:00
category = "xfce";
pname = "xfce4-panel";
version = "4.18.4";
2017-12-17 16:02:52 +01:00
sha256 = "sha256-OEU9NzvgWn6zJGdK9Te2qBbARlwvRrLHuaUocNyGd/g=";
2017-12-17 16:02:52 +01:00
2020-12-28 22:17:56 +01:00
nativeBuildInputs = [
gobject-introspection
vala
];
buildInputs = [
exo
garcon
libdbusmenu-gtk3
libxfce4ui
2021-06-23 20:22:04 +02:00
libwnck
2020-12-28 22:17:56 +01:00
xfconf
tzdata
];
propagatedBuildInputs = [
gtk3
libxfce4util
];
2017-12-17 16:02:52 +01:00
patches = [ ./xfce4-panel-datadir.patch ];
postPatch = ''
substituteInPlace plugins/clock/clock.c \
--replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
'';
2021-11-28 19:51:44 +01:00
meta = with lib; {
2021-05-06 15:05:38 +02:00
description = "Panel for the Xfce desktop environment";
2021-11-28 19:51:44 +01:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
2017-12-17 16:02:52 +01:00
};
}