pop-wallpapers: 1.0.5 → 1.0.5-unstable-2025-06-24 (#419142)

authored by

Peder Bergebakken Sundt and committed by
GitHub
71f4f95c 7d7f2608

+15 -5
+15 -5
pkgs/by-name/po/pop-wallpapers/package.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation (finalAttrs: { 10 10 pname = "pop-wallpapers"; 11 - version = "1.0.5"; 11 + version = "1.0.5-unstable-2025-06-24"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pop-os"; 15 15 repo = "wallpapers"; 16 - rev = "refs/tags/${finalAttrs.version}"; 17 - hash = "sha256-JST5Rt4Ec1lRu62PUt98S2G1vKthAyOSpyCpuCnkGmw="; 16 + rev = "20a9fdd1ed86aadfbbfcd55dc3d2d9eb8ae28e15"; 17 + hash = "sha256-GUXxy+zRdBCsvWW9ytJZUHSw6rGc3uNTjNIsiK3l+zA="; 18 18 }; 19 19 20 + # Future-proofs calls to imagemagick's convert feature 21 + postPatch = '' 22 + substituteInPlace Makefile --replace-fail "convert" "magick" 23 + ''; 24 + 20 25 nativeBuildInputs = [ imagemagick ]; 21 26 22 27 makeFlags = [ "prefix=$(out)" ]; 23 28 24 - passthru.updateScript = nix-update-script { }; 29 + enableParallelBuilding = true; 30 + 31 + passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; 25 32 26 33 meta = { 27 34 description = "Wallpapers for Pop!_OS"; ··· 77 84 # tony-webster-97532.jpg 78 85 publicDomain 79 86 ]; 80 - maintainers = with lib.maintainers; [ pandapip1 ]; 87 + maintainers = with lib.maintainers; [ 88 + normalcea 89 + pandapip1 90 + ]; 81 91 platforms = lib.platforms.all; 82 92 }; 83 93 })