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
38 lines
735 B
Nix
38 lines
735 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
obs-studio,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "obs-replay-source";
|
|
version = "1.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "exeldro";
|
|
repo = "obs-replay-source";
|
|
rev = version;
|
|
sha256 = "sha256-+PSALDqHXPyR0J7YnLn3QgPN6eIoH3yTIm1Bp7Li8c8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ obs-studio ];
|
|
|
|
postInstall = ''
|
|
rm -rf $out/obs-plugins $out/data
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Replay source for OBS studio";
|
|
homepage = "https://github.com/exeldro/obs-replay-source";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
flexiondotorg
|
|
pschmitt
|
|
];
|
|
};
|
|
}
|