Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
961 B
Nix
48 lines
961 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
asio,
|
|
obs-studio,
|
|
qtbase,
|
|
websocketpp,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "obs-websocket";
|
|
version = "4.9.1-compat";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "obsproject";
|
|
repo = "obs-websocket";
|
|
rev = version;
|
|
sha256 = "sha256-cHsJxoQjwbWLxiHgIa3Es0mu62vyLCAd1wULeZqZsJM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
asio
|
|
obs-studio
|
|
qtbase
|
|
websocketpp
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postInstall = ''
|
|
mkdir $out/lib $out/share
|
|
mv $out/obs-plugins/64bit $out/lib/obs-plugins
|
|
rm -rf $out/obs-plugins
|
|
mv $out/data $out/share/obs
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Legacy websocket 4.9.1 protocol support for OBS Studio 28 or above";
|
|
homepage = "https://github.com/obsproject/obs-websocket";
|
|
maintainers = with maintainers; [ flexiondotorg ];
|
|
license = licenses.gpl2Plus;
|
|
inherit (obs-studio.meta) platforms;
|
|
};
|
|
}
|