obs-studio-plugins.obs-stroke-glow-shadow: init at 1.5.2 (#409004)

authored by

Peder Bergebakken Sundt and committed by
GitHub
b993563e 403c43d9

+40
+2
pkgs/applications/video/obs-studio/plugins/default.nix
··· 72 73 obs-source-switcher = callPackage ./obs-source-switcher.nix { }; 74 75 obs-teleport = callPackage ./obs-teleport { }; 76 77 obs-text-pthread = callPackage ./obs-text-pthread.nix { };
··· 72 73 obs-source-switcher = callPackage ./obs-source-switcher.nix { }; 74 75 + obs-stroke-glow-shadow = callPackage ./obs-stroke-glow-shadow.nix { }; 76 + 77 obs-teleport = callPackage ./obs-teleport { }; 78 79 obs-text-pthread = callPackage ./obs-text-pthread.nix { };
+38
pkgs/applications/video/obs-studio/plugins/obs-stroke-glow-shadow.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + obs-studio, 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "obs-stroke-glow-shadow"; 11 + version = "v1.5.2"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "FiniteSingularity"; 15 + repo = "obs-stroke-glow-shadow"; 16 + rev = version; 17 + sha256 = "sha256-+2hb4u+6UG7IV9pAvPjp4wvDYhYnxe98U5QQjUcdD/k="; 18 + }; 19 + 20 + nativeBuildInputs = [ cmake ]; 21 + buildInputs = [ obs-studio ]; 22 + 23 + postFixup = '' 24 + rm -rf $out/obs-plugins 25 + rm -rf $out/data 26 + ''; 27 + 28 + meta = with lib; { 29 + description = "An OBS plugin to provide efficient Stroke, Glow, and Shadow effects on masked sources."; 30 + homepage = "https://github.com/FiniteSingularity/obs-stroke-glow-shadow"; 31 + maintainers = with maintainers; [ flexiondotorg ]; 32 + license = licenses.gpl2Only; 33 + platforms = [ 34 + "x86_64-linux" 35 + "i686-linux" 36 + ]; 37 + }; 38 + }