Merge pull request #282628 from GaetanLepage/obs-composite-blur
This commit is contained in:
commit
5af9ce3fd6
@ -20,6 +20,8 @@
|
|||||||
|
|
||||||
obs-command-source = callPackage ./obs-command-source.nix { };
|
obs-command-source = callPackage ./obs-command-source.nix { };
|
||||||
|
|
||||||
|
obs-composite-blur = callPackage ./obs-composite-blur.nix { };
|
||||||
|
|
||||||
obs-freeze-filter = qt6Packages.callPackage ./obs-freeze-filter.nix { };
|
obs-freeze-filter = qt6Packages.callPackage ./obs-freeze-filter.nix { };
|
||||||
|
|
||||||
obs-gradient-source = callPackage ./obs-gradient-source.nix { };
|
obs-gradient-source = callPackage ./obs-gradient-source.nix { };
|
||||||
|
@ -0,0 +1,35 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user