Replies: 3 comments 11 replies
|
Please provide your full build steps. As you can see from CI, all builds are working fine |
0 replies
|
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. |
11 replies
|
For further help, please join the official Discord and create a thread under #development. Thank you. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
OBS Studio Logs
n/a
Current and Expected Behavior
Steps to Reproduce the Problem
regular configure
Any additional Information we need to know?
Removing
@uin version.hpp.in lets the build proceed.But it breaks later again:
clang-14
OS: FreeBSD 13.1
All reactions