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
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|