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

38 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-17 02:21:50 +00:00
{ lib, stdenv, pkg-config, fetchFromGitHub, python3, vala_0_46
2021-06-23 18:22:04 +00:00
, gtk3, libwnck, libxfce4util, xfce4-panel, wafHook, xfce }:
2017-06-05 01:47:08 +00:00
stdenv.mkDerivation rec {
pname = "xfce4-namebar-plugin";
version = "1.0.0";
2017-06-05 01:47:08 +00:00
src = fetchFromGitHub {
owner = "HugLifeTiZ";
repo = pname;
rev = "v${version}";
sha256 = "sha256-aKrJzf9rwCyXAJsRIXdBzmJBASuXD5I5kZrp+atx4FA=";
2017-06-05 01:47:08 +00:00
};
2021-01-17 02:21:50 +00:00
nativeBuildInputs = [ pkg-config vala_0_46 wafHook python3 ];
2021-06-23 18:22:04 +00:00
buildInputs = [ gtk3 libwnck libxfce4util xfce4-panel ];
2017-06-05 01:47:08 +00:00
postPatch = ''
substituteInPlace src/namebar.vala --replace 'var dirs = Environment.get_system_data_dirs()' "string[] dirs = { \"$out/share\" }"
substituteInPlace src/preferences.vala --replace 'var dir_strings = Environment.get_system_data_dirs()' "string[] dir_strings = { \"$out/share\" }"
2017-06-05 01:47:08 +00:00
'';
passthru.updateScript = xfce.updateScript {
inherit pname version;
attrPath = "xfce.${pname}";
versionLister = xfce.gitLister src.meta.homepage;
rev-prefix = "v";
};
meta = with lib; {
homepage = "https://github.com/HugLifeTiZ/xfce4-namebar-plugin";
description = "Plugin which integrates titlebar and window controls into the xfce4-panel";
2017-06-05 01:47:08 +00:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.volth ];
};
}