lol

Merge pull request #249470 from LudovicoPiero/nwg-panel-bump

nwg-panel: 0.7.17 -> 0.9.11

authored by

Nick Cao and committed by
GitHub
a3609e88 f8a4ed33

+7 -5
+7 -5
pkgs/applications/misc/nwg-panel/default.nix
··· 10 10 , pamixer # pamixer 11 11 , pulseaudio # pactl 12 12 , libdbusmenu-gtk3 # tray 13 + , playerctl 13 14 }: 14 15 15 16 python3Packages.buildPythonApplication rec { 16 17 pname = "nwg-panel"; 17 - version = "0.7.17"; 18 + version = "0.9.11"; 18 19 19 20 src = fetchFromGitHub { 20 21 owner = "nwg-piotr"; 21 22 repo = "nwg-panel"; 22 - rev = "refs/tags/v${version}"; 23 - sha256 = "sha256-HGbPBHf5PIjbuMSd/2fFSCLQ/7s1Xbys+KoGXctQOvM="; 23 + rev = "v${version}"; 24 + hash = "sha256-4/R/x3iQ6nsG5OLy/FMA24uxS3xKD/2901gBNe6lkk4="; 24 25 }; 25 26 26 27 # No tests ··· 30 31 strictDeps = false; 31 32 dontWrapGApps = true; 32 33 33 - buildInputs = [ atk gdk-pixbuf gtk-layer-shell pango ]; 34 + buildInputs = [ atk gdk-pixbuf gtk-layer-shell pango playerctl ]; 34 35 nativeBuildInputs = [ wrapGAppsHook gobject-introspection ]; 35 36 propagatedBuildInputs = (with python3Packages; 36 37 [ i3ipc netifaces psutil pybluez pygobject3 requests dasbus setuptools ]) ··· 56 57 description = "GTK3-based panel for Sway window manager"; 57 58 license = licenses.mit; 58 59 platforms = platforms.linux; 59 - maintainers = with maintainers; [ ]; 60 + maintainers = with maintainers; [ ludovicopiero ]; 61 + mainProgram = "nwg-panel"; 60 62 }; 61 63 }