Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / nwg-panel / default.nix
blobddc427654e9838d11b24f6dab076f1301ee59e19
1 { lib, fetchFromGitHub
2 , python3Packages, wrapGAppsHook, gobject-introspection
3 , gtk-layer-shell, pango, gdk-pixbuf, atk
4 # Extra packages called by various internal nwg-panel modules
5 , sway             # swaylock, swaymsg
6 , systemd          # systemctl
7 , wlr-randr        # wlr-randr
8 , nwg-menu         # nwg-menu
9 , light            # light
10 , pamixer          # pamixer
11 , pulseaudio       # pactl
12 , libdbusmenu-gtk3 # tray
13 , playerctl
16 python3Packages.buildPythonApplication rec {
17   pname = "nwg-panel";
18   version = "0.9.16";
20   src = fetchFromGitHub {
21     owner = "nwg-piotr";
22     repo = "nwg-panel";
23     rev = "v${version}";
24     hash = "sha256-xHAn8NWSWSm95SIX1M8HIQwgNBq5/K5xsanbkAKfXSw=";
25   };
27   # No tests
28   doCheck = false;
30   # Because of wrapGAppsHook
31   strictDeps = false;
32   dontWrapGApps = true;
34   buildInputs = [ atk gdk-pixbuf gtk-layer-shell pango playerctl ];
35   nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
36   propagatedBuildInputs = (with python3Packages;
37     [ i3ipc netifaces psutil pybluez pygobject3 requests dasbus setuptools ])
38     # Run-time GTK dependency required by the Tray module
39     ++ [ libdbusmenu-gtk3 ];
41   postInstall = ''
42     mkdir -p $out/share/{applications,pixmaps}
43     cp $src/nwg-panel-config.desktop $out/share/applications/
44     cp $src/nwg-shell.svg $src/nwg-panel.svg $out/share/pixmaps/
45   '';
47   preFixup = ''
48     makeWrapperArgs+=(
49       "''${gappsWrapperArgs[@]}"
50       --prefix XDG_DATA_DIRS : "$out/share"
51       --prefix PATH : "${lib.makeBinPath [ light nwg-menu pamixer pulseaudio sway systemd wlr-randr ]}"
52     )
53   '';
55   meta = with lib; {
56     homepage = "https://github.com/nwg-piotr/nwg-panel";
57     description = "GTK3-based panel for Sway window manager";
58     license = licenses.mit;
59     platforms = platforms.linux;
60     maintainers = with maintainers; [ ludovicopiero ];
61     mainProgram = "nwg-panel";
62   };