fakeroot: fix build w/glibc-2.33

authored by Maximilian Bosch and committed by Vladimír Čunát 6e50ffe7 3f5336e1

+17 -1
+17 -1
pkgs/tools/system/fakeroot/default.nix
··· 9 sha256 = "1xpl0s2yjyjwlf832b6kbkaa5921liybaar13k7n45ckd9lxd700"; 10 }; 11 12 - patches = lib.optional stdenv.isLinux ./einval.patch 13 # patchset from brew 14 ++ lib.optionals stdenv.isDarwin [ 15 (fetchpatch {
··· 9 sha256 = "1xpl0s2yjyjwlf832b6kbkaa5921liybaar13k7n45ckd9lxd700"; 10 }; 11 12 + patches = lib.optionals stdenv.isLinux [ 13 + ./einval.patch 14 + 15 + # glibc 2.33 patches from ArchLinux 16 + (fetchpatch { 17 + url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/packages/fakeroot/trunk/fakeroot-1.25.3-glibc-2.33-fix-1.patch"; 18 + sha256 = "sha256-F6BcxYInSLu7Fxg6OmMZDhTWoLqsc//yYPlTZqQQl68="; 19 + }) 20 + (fetchpatch { 21 + url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/packages/fakeroot/trunk/fakeroot-1.25.3-glibc-2.33-fix-2.patch"; 22 + sha256 = "sha256-ifpJxhk6MyQpFolC1hIAAUjcHmOHVU1D25tRwpu2S/k="; 23 + }) 24 + (fetchpatch { 25 + url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/packages/fakeroot/trunk/fakeroot-1.25.3-glibc-2.33-fix-3.patch"; 26 + sha256 = "sha256-o2Xm4C64Ny9TL8fjsZltjO1CdJ4VGwqZ+LnufVL5Sq8="; 27 + }) 28 + ] 29 # patchset from brew 30 ++ lib.optionals stdenv.isDarwin [ 31 (fetchpatch {