From 16b32782b4a31a2f49a474d9ddc6eaa6ffd31739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 23 Jul 2023 16:35:34 +0200 Subject: [PATCH] rstudio: supply missing #include This was only suceeding by accident, uncovered probably by boost update. https://hydra.nixos.org/build/228258786/nixlog/4/tail --- pkgs/applications/editors/rstudio/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/rstudio/default.nix b/pkgs/applications/editors/rstudio/default.nix index 2d8b3c2bb09c..c2cc0fcca562 100644 --- a/pkgs/applications/editors/rstudio/default.nix +++ b/pkgs/applications/editors/rstudio/default.nix @@ -148,6 +148,8 @@ in substituteInPlace src/cpp/session/include/session/SessionConstants.hpp \ --replace '@pandoc@' ${pandoc}/bin/pandoc + + sed '1i#include ' -i src/cpp/core/include/core/Thread.hpp ''; hunspellDictionaries = with lib; filter isDerivation (unique (attrValues hunspellDicts));