Commit 2545e768 authored by Martin Joerg's avatar Martin Joerg
Browse files

skypeexport: fix build against Boost >= 1.85

parent 48d4d2dc
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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 ];