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