summary refs log tree commit diff
path: root/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin/default.nix
blob: 209e25bc9e3f4fc0afa08db800b42d9bddc358ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, mkXfceDerivation
, gtk3
, libxfce4ui
, pcre
, libxfce4util
, xfce4-panel
}:

mkXfceDerivation {
  category = "panel-plugins";
  pname = "xfce4-verve-plugin";
  version = "2.0.1";
  rev-prefix = "";
  sha256 = "YwUOSTZMoHsWWmi/ajQv/fX8a0IJoc3re3laVEmnX/M=";

  buildInputs = [ gtk3 libxfce4ui pcre libxfce4util xfce4-panel ];

  hardeningDisable = [ "format" ];

  meta = with lib; {
    description = "A command-line plugin";
    maintainers = with maintainers; [ ];
  };
}