Files

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

28 lines
380 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
mkKdeDerivation,
qtquick3d,
qtsvg,
pkg-config,
mpv-unwrapped,
yt-dlp,
}:
mkKdeDerivation {
pname = "plasmatube";
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [
qtquick3d
qtsvg
mpv-unwrapped
];
qtWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath [ yt-dlp ])
];
meta.mainProgram = "plasmatube";
}