nixpkgs/pkgs/kde/gear/plasmatube/default.nix

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

28 lines
380 B
Nix
Raw Normal View History

{
lib,
mkKdeDerivation,
qtquick3d,
qtsvg,
pkg-config,
mpv-unwrapped,
yt-dlp,
}:
mkKdeDerivation {
pname = "plasmatube";
2024-09-20 01:54:48 -04:00
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [
qtquick3d
qtsvg
mpv-unwrapped
];
2024-09-20 01:54:48 -04:00
qtWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath [ yt-dlp ])
];
meta.mainProgram = "plasmatube";
}