
Fix build, exo-1 no longer required. https://git.xfce.org/panel-plugins/xfce4-verve-plugin/commit/?h=isaacschemm/gtk3&id=ca80d4b0471b5419105bb2ad4fbf0037be765d42
19 lines
503 B
Nix
19 lines
503 B
Nix
{ lib, mkXfceDerivation, gtk3, libxfce4ui, pcre, libxfce4util, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-verve-plugin";
|
|
version = "2.0.0";
|
|
rev = version;
|
|
sha256 = "09vpa6m0ah7pgmra094c16vb79xrcwva808g6zpawwrhcwz85lcz";
|
|
|
|
buildInputs = [ gtk3 libxfce4ui pcre libxfce4util xfce4-panel ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
description = "A command-line plugin";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
};
|
|
}
|