nwg-panel 0.7.11 -> 0.7.15 https://github.com/nwg-piotr/nwg-panel/releases attrpath: nwg-panel Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/f01mg8smi02isplcwz0i1fgfdfdh5xxz-packages.json.drv building '/nix/store/f01mg8smi02isplcwz0i1fgfdfdh5xxz-packages.json.drv'... Going to be running update for following packages: - nwg-panel-0.7.11 Press Enter key to continue... Running update for: - nwg-panel-0.7.11: UPDATING ... - nwg-panel-0.7.11: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/applications/misc/nwg-panel/default.nix b/pkgs/applications/misc/nwg-panel/default.nix index 7724976ebab..f2edb44347c 100644 --- a/pkgs/applications/misc/nwg-panel/default.nix +++ b/pkgs/applications/misc/nwg-panel/default.nix @@ -14,13 +14,13 @@ python3Packages.buildPythonApplication rec { pname = "nwg-panel"; - version = "0.7.11"; + version = "0.7.15"; src = fetchFromGitHub { owner = "nwg-piotr"; repo = "nwg-panel"; rev = "refs/tags/v${version}"; - sha256 = "sha256-Esr1OPyQCCQIOfgkl6RIn93ZaJkF0O2RM9ObIgBlPi4="; + sha256 = "sha256-si6xWifor1G9n+BV/+ZK2dOpqZKj7abuxX2fKGdmPl0="; }; # No tests Old version "0.7.11"" not present in master derivation file with contents: { lib, fetchFromGitHub , python3Packages, wrapGAppsHook, gobject-introspection , gtk-layer-shell, pango, gdk-pixbuf, atk # Extra packages called by various internal nwg-panel modules , sway # swaylock, swaymsg , systemd # systemctl , wlr-randr # wlr-randr , nwg-menu # nwg-menu , light # light , pamixer # pamixer , pulseaudio # pactl , libdbusmenu-gtk3 # tray }: python3Packages.buildPythonApplication rec { pname = "nwg-panel"; version = "0.7.11"; src = fetchFromGitHub { owner = "nwg-piotr"; repo = "nwg-panel"; rev = "refs/tags/v${version}"; sha256 = "sha256-Esr1OPyQCCQIOfgkl6RIn93ZaJkF0O2RM9ObIgBlPi4="; }; # No tests doCheck = false; # Because of wrapGAppsHook strictDeps = false; dontWrapGApps = true; buildInputs = [ atk gdk-pixbuf gtk-layer-shell pango ]; nativeBuildInputs = [ wrapGAppsHook gobject-introspection ]; propagatedBuildInputs = (with python3Packages; [ i3ipc netifaces psutil pybluez pygobject3 requests dasbus setuptools ]) # Run-time GTK dependency required by the Tray module ++ [ libdbusmenu-gtk3 ]; postInstall = '' mkdir -p $out/share/{applications,pixmaps} cp $src/nwg-panel-config.desktop $out/share/applications/ cp $src/nwg-shell.svg $src/nwg-panel.svg $out/share/pixmaps/ ''; preFixup = '' makeWrapperArgs+=( "''${gappsWrapperArgs[@]}" --prefix XDG_DATA_DIRS : "$out/share" --prefix PATH : "${lib.makeBinPath [ light nwg-menu pamixer pulseaudio sway systemd wlr-randr ]}" ) ''; meta = with lib; { homepage = "https://github.com/nwg-piotr/nwg-panel"; description = "GTK3-based panel for Sway window manager"; license = licenses.mit; platforms = platforms.linux; maintainers = with maintainers; [ berbiche ]; }; }