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

42 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-17 02:21:50 +00:00
{ lib, stdenv, pkg-config, fetchFromGitHub, python2, bash, vala_0_46
, dockbarx, gtk2, xfce, pythonPackages, wafHook }:
2017-04-29 22:11:01 +00:00
stdenv.mkDerivation rec {
pname = "xfce4-dockbarx-plugin";
version = "${ver}-${rev}";
2017-04-29 22:11:01 +00:00
ver = "0.5";
rev = "a2dcb66";
src = fetchFromGitHub {
owner = "TiZ-EX1";
repo = "xfce4-dockbarx-plugin";
rev = rev;
sha256 = "1f75iwlshnif60x0qqdqw5ffng2m4f4zp0ijkrbjz83wm73nsxfx";
};
pythonPath = [ dockbarx ];
2021-01-17 02:21:50 +00:00
nativeBuildInputs = [ pkg-config wafHook ];
buildInputs = [ python2 vala_0_46 gtk2 pythonPackages.wrapPython ]
2018-03-12 22:55:30 +00:00
++ (with xfce; [ libxfce4util xfce4-panel xfconf xfce4-dev-tools ])
2017-04-29 22:11:01 +00:00
++ pythonPath;
postPatch = ''
substituteInPlace wscript --replace /usr/share/ "\''${PREFIX}/share/"
substituteInPlace src/dockbarx.vala --replace /usr/share/ $out/share/
substituteInPlace src/dockbarx.vala --replace '/usr/bin/env python2' ${bash}/bin/bash
'';
postFixup = ''
wrapPythonProgramsIn "$out/share/xfce4/panel/plugins" "$out $pythonPath"
'';
2017-04-29 22:11:01 +00:00
meta = with lib; {
homepage = "https://github.com/TiZ-EX1/xfce4-dockbarx-plugin";
2017-04-29 22:11:01 +00:00
description = "A plugins to embed DockbarX into xfce4-panel";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.volth ];
};
}