obs-studio-plugins.obs-dvd-screensaver: init at 0.0.2 (#409049)

This commit is contained in:
Peder Bergebakken Sundt
2025-05-28 03:39:01 +02:00
committed by GitHub
2 changed files with 32 additions and 0 deletions
@@ -30,6 +30,8 @@
obs-composite-blur = callPackage ./obs-composite-blur.nix { };
obs-dvd-screensaver = callPackage ./obs-dvd-screensaver.nix { };
obs-freeze-filter = qt6Packages.callPackage ./obs-freeze-filter.nix { };
obs-gradient-source = callPackage ./obs-gradient-source.nix { };
@@ -0,0 +1,30 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
obs-studio,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "obs-dvd-screensaver";
version = "0.0.2";
src = fetchFromGitHub {
owner = "wimpysworld";
repo = "obs-dvd-screensaver";
tag = "${finalAttrs.version}";
hash = "sha256-uZdFP3TULECzYNKtwaxFIcFYeFYdEoJ+ZKAqh9y9MEo=";
};
strictDeps = true;
nativeBuildInputs = [ cmake ];
buildInputs = [ obs-studio ];
meta = {
description = "DVD screen saver for OBS Studio";
homepage = "https://github.com/wimpysworld/obs-dvd-screensaver";
maintainers = with lib.maintainers; [ flexiondotorg ];
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux;
};
})