nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin/default.nix

27 lines
491 B
Nix
Raw Normal View History

2021-01-31 04:37:58 +00:00
{ lib
, mkXfceDerivation
, gtk3
, libxfce4ui
, pcre
, libxfce4util
, xfce4-panel
, xfconf
}:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-verve-plugin";
2021-01-31 04:37:58 +00:00
version = "2.0.1";
rev-prefix = "";
2021-01-31 04:37:58 +00:00
sha256 = "YwUOSTZMoHsWWmi/ajQv/fX8a0IJoc3re3laVEmnX/M=";
buildInputs = [ gtk3 libxfce4ui pcre libxfce4util xfce4-panel ];
hardeningDisable = [ "format" ];
2021-01-31 04:37:58 +00:00
meta = with lib; {
description = "A command-line plugin";
2021-01-31 04:37:58 +00:00
maintainers = with maintainers; [ ];
};
}