lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

xar: fix Linux build on staging-next

+53 -1
+5 -1
pkgs/by-name/xa/xar/package.nix
··· 48 48 # # … 49 49 # rm -r ../pkgs/by-name/xa/xar/patches 50 50 # git format-patch --zero-commit --output-directory ../pkgs/by-name/xa/xar/patches main 51 - patches = lib.filesystem.listFilesRecursive ./patches; 51 + patches = 52 + # Avoid Darwin rebuilds on staging-next 53 + lib.filter ( 54 + p: stdenv.hostPlatform.isDarwin -> baseNameOf p != "0020-Fall-back-to-readlink-on-Linux.patch" 55 + ) (lib.filesystem.listFilesRecursive ./patches); 52 56 53 57 # We do not use or modify files outside of the xar subdirectory. 54 58 patchFlags = [ "-p2" ];