mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
obs-studio-plugins.obs-retro-effects: init at 1.0.0
This commit is contained in:
parent
8f8048f2c1
commit
e39aa7b8db
2 changed files with 41 additions and 0 deletions
|
@ -62,6 +62,8 @@
|
|||
|
||||
obs-replay-source = qt6Packages.callPackage ./obs-replay-source.nix { };
|
||||
|
||||
obs-retro-effects = callPackage ./obs-retro-effects.nix { };
|
||||
|
||||
obs-rgb-levels = callPackage ./obs-rgb-levels.nix { };
|
||||
|
||||
obs-scale-to-sound = callPackage ./obs-scale-to-sound.nix { };
|
||||
|
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
obs-studio,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "obs-retro-effects";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "FiniteSingularity";
|
||||
repo = "obs-retro-effects";
|
||||
rev = "${version}";
|
||||
sha256 = "sha256-+dg5ySleMb9abT9kIM7HvRSRx9V08B9XPjfoAVe+tWY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ obs-studio ];
|
||||
|
||||
postFixup = ''
|
||||
mv $out/data/obs-plugins/${pname}/shaders $out/share/obs/obs-plugins/${pname}/
|
||||
rm -rf $out/obs-plugins
|
||||
rm -rf $out/data
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A collection of OBS filters to give your stream that retro feel.";
|
||||
homepage = "https://github.com/FiniteSingularity/obs-retro-effects";
|
||||
maintainers = with maintainers; [ flexiondotorg ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = [
|
||||
"x86_64-linux"
|
||||
"i686-linux"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue