obs-studio-plugins.obs-dvd-screensaver: init at 0.0.2

This commit is contained in:
Martin Wimpress
2025-05-20 13:28:28 +01:00
parent 2b913f9269
commit 65b0112b39
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;
};
})