skypeexport: fix build against Boost >= 1.85

This commit is contained in:
Martin Joerg
2025-05-04 07:17:39 +00:00
parent 48d4d2dc4b
commit 2545e76853
+9
View File
@@ -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 ];