36 lines
807 B
Nix
36 lines
807 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, obs-studio
|
||
|
, cmake
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "obs-composite-blur";
|
||
|
version = "1.1.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "FiniteSingularity";
|
||
|
repo = "obs-composite-blur";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-icn0X+c7Uf0nTFaVDVTPi26sfWTSeoAj7+guEn9gi9Y=";
|
||
|
};
|
||
|
|
||
|
buildInputs = [
|
||
|
obs-studio
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A comprehensive blur plugin for OBS that provides several different blur algorithms, and proper compositing";
|
||
|
homepage = "https://github.com/FiniteSingularity/obs-composite-blur";
|
||
|
license = licenses.gpl2Only;
|
||
|
maintainers = with maintainers; [ GaetanLepage ];
|
||
|
mainProgram = "obs-composite-blur";
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|