lol

Merge pull request #166407 from bobby285271/virt-viewer

virt-viewer: fix build with meson 0.61

authored by

7c6f434c and committed by
GitHub
45f98389 5698f541

+10
+10
pkgs/applications/virtualization/virt-viewer/default.nix
··· 2 2 , stdenv 3 3 , bash-completion 4 4 , fetchurl 5 + , fetchpatch 5 6 , gdbm ? null 6 7 , glib 7 8 , gsettings-desktop-schemas ··· 42 43 url = "https://releases.pagure.org/virt-viewer/virt-viewer-${version}.tar.xz"; 43 44 sha256 = "sha256-pD+iMlxMHHelyMmAZaww7wURohrJjlkPIjQIabrZq9A="; 44 45 }; 46 + 47 + patches = [ 48 + # Fix build with meson 0.61 49 + # https://gitlab.com/virt-viewer/virt-viewer/-/merge_requests/117 50 + (fetchpatch { 51 + url = "https://gitlab.com/virt-viewer/virt-viewer/-/commit/ed19e51407bee53988878a6ebed4e7279d00b1a1.patch"; 52 + sha256 = "sha256-3AbnkbhWOh0aNjUkmVoSV/9jFQtvTllOr7plnkntb2o="; 53 + }) 54 + ]; 45 55 46 56 nativeBuildInputs = [ 47 57 glib