Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
676 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
obs-studio,
}:
stdenv.mkDerivation rec {
pname = "pixel-art";
version = "0.0.4";
src = fetchFromGitHub {
owner = "dspstanky";
repo = "pixel-art";
rev = version;
sha256 = "sha256-7o63e7nK/JsK2SQg0AzUYcc4ZsPx0lt8gtAQm8Zy+9w=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ obs-studio ];
meta = with lib; {
description = "OBS Plugin that can be used to create retro-inspired pixel art visuals";
homepage = "https://github.com/dspstanky/pixel-art";
maintainers = with maintainers; [ flexiondotorg ];
license = licenses.gpl2Only;
inherit (obs-studio.meta) platforms;
};
}