obs-studio-plugins.obs-markdown: init at 0.2.7 (#408777)

This commit is contained in:
Peder Bergebakken Sundt 2025-06-03 01:30:12 +02:00 committed by GitHub
commit 7062685b99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 39 additions and 0 deletions

View file

@ -46,6 +46,8 @@
obs-livesplit-one = callPackage ./obs-livesplit-one { };
obs-markdown = callPackage ./obs-markdown.nix { };
obs-media-controls = qt6Packages.callPackage ./obs-media-controls.nix { };
obs-move-transition = callPackage ./obs-move-transition.nix { };

View file

@ -0,0 +1,37 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
obs-studio,
}:
stdenv.mkDerivation rec {
pname = "obs-markdown";
version = "0.2.7";
src = fetchFromGitHub {
owner = "exeldro";
repo = "obs-markdown";
rev = version;
sha256 = "sha256-5ajX/cEa0n12Putx1k3ctl1v9wRzJRhyJNDlmjSMbeU=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ obs-studio ];
postInstall = ''
rm -rf $out/obs-plugins $out/data
'';
meta = with lib; {
description = "Plugin for OBS Studio to add Markdown sources";
homepage = "https://github.com/exeldro/obs-markdown";
maintainers = with maintainers; [ flexiondotorg ];
license = licenses.gpl2Only;
platforms = [
"x86_64-linux"
"i686-linux"
];
};
}