summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/dockbarx
diff options
context:
space:
mode:
authorVolth <volth@webmaster.ms>2017-04-29 22:11:01 +0000
committerVolth <volth@webmaster.ms>2017-04-29 22:15:40 +0000
commitf17a0fcdba31e59050d47b133c2cd4a519665a46 (patch)
treef0146b7f2dfd3c10031fe5ae980c8be550a88357 /pkgs/applications/misc/dockbarx
parent8c9b60a8307b4dafffb894b3d652389f6079b68a (diff)
xfce4-dockbarx-plugin: init at 0.5
Diffstat (limited to 'pkgs/applications/misc/dockbarx')
-rw-r--r--pkgs/applications/misc/dockbarx/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/misc/dockbarx/default.nix b/pkgs/applications/misc/dockbarx/default.nix
new file mode 100644
index 000000000000..60bd5134e8ac
--- /dev/null
+++ b/pkgs/applications/misc/dockbarx/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchFromGitHub, pythonPackages, gnome2, keybinder }:
+
+pythonPackages.buildPythonApplication rec {
+ ver = "0.92";
+ name = "dockbarx-${ver}";
+
+ src = fetchFromGitHub {
+ owner = "M7S";
+ repo = "dockbarx";
+ rev = ver;
+ sha256 = "17n7jc3bk3f2i0i1ddpp05bakifc8y5xppads7ihpkj3qw9g35vl";
+ };
+
+ postPatch = ''
+ substituteInPlace setup.py --replace /usr/ ""
+ substituteInPlace setup.py --replace '"/", "usr", "share",' '"share",'
+ substituteInPlace dockbarx/applets.py --replace /usr/share/ $out/share/
+ substituteInPlace dockbarx/dockbar.py --replace /usr/share/ $out/share/
+ substituteInPlace dockbarx/iconfactory.py --replace /usr/share/ $out/share/
+ substituteInPlace dockbarx/theme.py --replace /usr/share/ $out/share/
+ substituteInPlace dockx_applets/battery_status.py --replace /usr/share/ $out/share/
+ substituteInPlace dockx_applets/namebar.py --replace /usr/share/ $out/share/
+ substituteInPlace dockx_applets/namebar_window_buttons.py --replace /usr/share/ $out/share/
+ substituteInPlace dockx_applets/volume-control.py --replace /usr/share/ $out/share/
+ '';
+
+ propagatedBuildInputs = (with pythonPackages; [ pygtk pyxdg dbus-python pillow xlib ])
+ ++ (with gnome2; [ gnome_python gnome_python_desktop ])
+ ++ [ keybinder ];
+
+ meta = with stdenv.lib; {
+ homepage = http://launchpad.net/dockbar/;
+ description = "DockBarX is a lightweight taskbar / panel replacement for Linux which works as a stand-alone dock";
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.volth ];
+ };
+}