diff --git a/pkgs/by-name/sk/skypeexport/package.nix b/pkgs/by-name/sk/skypeexport/package.nix index 0fa6e418d7bc..5ed838986f30 100644 --- a/pkgs/by-name/sk/skypeexport/package.nix +++ b/pkgs/by-name/sk/skypeexport/package.nix @@ -26,6 +26,15 @@ stdenv.mkDerivation (finalAttrs: { }) ]; + # fix build against Boost >= 1.85 + # https://github.com/Temptin/SkypeExport/pull/24 + postPatch = '' + substituteInPlace src/SkypeExport/main.cpp \ + --replace-fail \ + '.leaf()' \ + '.filename()' + ''; + nativeBuildInputs = [ cmake ]; buildInputs = [ boost ];