1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 cmake,
6 obs-studio,
7}:
8
9stdenv.mkDerivation rec {
10 pname = "pixel-art";
11 version = "0.0.4";
12
13 src = fetchFromGitHub {
14 owner = "dspstanky";
15 repo = "pixel-art";
16 rev = version;
17 sha256 = "sha256-7o63e7nK/JsK2SQg0AzUYcc4ZsPx0lt8gtAQm8Zy+9w=";
18 };
19
20 nativeBuildInputs = [ cmake ];
21 buildInputs = [ obs-studio ];
22
23 meta = with lib; {
24 description = "OBS Plugin that can be used to create retro-inspired pixel art visuals";
25 homepage = "https://github.com/dspstanky/pixel-art";
26 maintainers = with maintainers; [ flexiondotorg ];
27 license = licenses.gpl2Only;
28 platforms = [
29 "x86_64-linux"
30 "i686-linux"
31 ];
32 };
33}