mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
, libjpeg
|
|
, nix-update-script
|
|
, obs-studio
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "obs-teleport";
|
|
version = "0.6.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fzwoch";
|
|
repo = "obs-teleport";
|
|
rev = version;
|
|
sha256 = "sha256-fDLe1GbLZb/rXLiTtvcMqfQo2cG1guDCwLOEf3piPcU=";
|
|
};
|
|
|
|
vendorHash = "sha256-GhIFGnGnwDmuDobMlOWCRFpHTbQlRtJrqXSFwxFydG0=";
|
|
|
|
buildInputs = [
|
|
libjpeg
|
|
obs-studio
|
|
];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
CGO_CFLAGS = "-I${obs-studio}/include/obs";
|
|
CGO_LDFLAGS = "-L${obs-studio}/lib -lobs -lobs-frontend-api";
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
go build -buildmode=c-shared -o obs-teleport.so .
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib/obs-plugins
|
|
mv obs-teleport.so $out/lib/obs-plugins
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "An OBS Studio plugin for an open NDI-like replacement";
|
|
homepage = "https://github.com/fzwoch/obs-teleport";
|
|
maintainers = [ lib.maintainers.paveloom ];
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = obs-studio.meta.platforms;
|
|
};
|
|
}
|