Replies: 3 comments 11 replies
-
Please provide your full build steps. As you can see from CI, all builds are working fine |
Beta Was this translation helpful? Give feedback.
-
Hi, I'm running into nearly the same error on nixOS 22.11. I'm attaching my streamfx.nix file: {
fetchFromGitHub, stdenv, obs-studio, cmake, lib, qtbase ? qt6.qtbase, qt6, ffmpeg }: stdenv.mkDerivation rec {
pname = "obs-streamfx";
version = "0.12.0b164";
src = fetchFromGitHub {
owner = "Xaymar";
repo = "obs-StreamFX";
rev = version;
sha256 = "04080553hl2lbqdpr8wnlyq00yv64dhfdqhr0b9spkmagyhm45c7";
fetchSubmodules = true;
};
cmakeFlags = [
"-DSTRUCTURE_PACKAGEMANAGER=ON"
"-DVERSION=${version}"
"-DENABLE_UPDATER=OFF"
];
nativeBuildInputs = [ cmake ];
buildInputs = [ obs-studio qtbase ffmpeg ];
dontWrapQtApps = true;
meta.broken = lib.versionOlder obs-studio.version "28";
} The log output is here: I'm not asking you to debug my Nix configs or anything, but this seems like I've got the right dependencies and cmake flags, maybe there's something I'm missing in how to build it? Let me know if you need any additional details. |
Beta Was this translation helpful? Give feedback.
-
For further help, please join the official Discord and create a thread under #development. Thank you. |
Beta Was this translation helpful? Give feedback.
-
OBS Studio Logs
n/a
Current and Expected Behavior
Steps to Reproduce the Problem
regular configure
Any additional Information we need to know?
Removing
@u
in version.hpp.in lets the build proceed.But it breaks later again:
clang-14
OS: FreeBSD 13.1
Beta Was this translation helpful? Give feedback.
All reactions