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

70 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, bash
, dockbarx
, gobject-introspection
, keybinder3
, pkg-config
, python3Packages
, vala_0_48
, wafHook
, wrapGAppsHook
, xfce
}:
2017-04-29 22:11:01 +00:00
stdenv.mkDerivation rec {
pname = "xfce4-dockbarx-plugin";
version = "${ver}-${rev}";
ver = "0.6";
rev = "5213876151f1836f044e9902a22d1e682144c1e0";
2017-04-29 22:11:01 +00:00
src = fetchFromGitHub {
owner = "xuzhen";
2017-04-29 22:11:01 +00:00
repo = "xfce4-dockbarx-plugin";
rev = rev;
sha256 = "sha256-VqtGcBRjvpCO9prVHOv6Gt1rAZtcAgkQkVCoR6ykC2k=";
2017-04-29 22:11:01 +00:00
};
pythonPath = [
dockbarx
python3Packages.pygobject3
];
2017-04-29 22:11:01 +00:00
nativeBuildInputs = [
gobject-introspection
pkg-config
python3Packages.wrapPython
vala_0_48
wafHook
wrapGAppsHook
];
buildInputs = [
keybinder3
python3Packages.python
xfce.xfce4-panel
xfce.xfconf
]
++ pythonPath;
2017-04-29 22:11:01 +00:00
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 python3' ${bash}/bin/bash
2017-04-29 22:11:01 +00:00
'';
postFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
wrapPythonProgramsIn "$out/share/xfce4/panel/plugins" "$out $pythonPath"
'';
2017-04-29 22:11:01 +00:00
meta = with lib; {
homepage = "https://github.com/xuzhen/xfce4-dockbarx-plugin";
description = "Plugins to embed DockbarX into xfce4-panel";
2017-04-29 22:11:01 +00:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
2017-04-29 22:11:01 +00:00
};
}