Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

paperwm: 44.0.0-beta1 -> 44.3.0; enable updater

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>

authored by Vladimir Serov Anderson Torres and committed by Anderson Torres 175e9d1f 319c27b7

+6 -3
+6 -3
pkgs/desktops/gnome/extensions/paperwm/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , gitUpdater 4 5 }: 5 6 6 7 stdenv.mkDerivation (finalAttrs: { 7 8 pname = "gnome-shell-extension-paperwm"; 8 - version = "44.0.0-beta.1"; 9 + version = "44.3.0"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "paperwm"; 12 13 repo = "PaperWM"; 13 14 rev = "v${finalAttrs.version}"; 14 - hash = "sha256-YRIaSD22bvzXo/wla178GeXIhvIwW6xLacjAQDC2P40="; 15 + hash = "sha256-zVxsfoIMTBhd2eXI+mP3FWe68UGiCIh+5RsXBKk16jE="; 15 16 }; 16 17 17 18 dontConfigure = true; ··· 26 27 runHook postInstall 27 28 ''; 28 29 30 + passthru.updateScript = gitUpdater { url = finalAttrs.meta.homepage; }; 31 + 29 32 meta = { 30 33 homepage = "https://github.com/paperwm/PaperWM"; 31 34 description = "Tiled scrollable window management for Gnome Shell"; 32 35 changelog = "https://github.com/paperwm/PaperWM/releases/tag/${finalAttrs.src.rev}"; 33 36 license = lib.licenses.gpl3Plus; 34 - maintainers = with lib.maintainers; [ hedning AndersonTorres ]; 37 + maintainers = with lib.maintainers; [ hedning AndersonTorres cab404 ]; 35 38 platforms = lib.platforms.all; 36 39 }; 37 40