aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/misc/dockbarx
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/applications/misc/dockbarx
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/misc/dockbarx')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/misc/dockbarx/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/misc/dockbarx/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/misc/dockbarx/default.nix
new file mode 100644
index 000000000000..97510bc3b457
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/misc/dockbarx/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchFromGitHub, pythonPackages, gnome2, keybinder }:
+
+pythonPackages.buildPythonApplication rec {
+ ver = "0.93";
+ name = "dockbarx-${ver}";
+
+ src = fetchFromGitHub {
+ owner = "M7S";
+ repo = "dockbarx";
+ rev = ver;
+ sha256 = "1h1g2vag5vnx87sa1f0qi8rq7wlr2ymvkrdr08kk7cma4wk0x6hg";
+ };
+
+ 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 = "https://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 ];
+ };
+}