Files

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

39 lines
649 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
mkKdeDerivation,
fetchFromGitLab,
mpv-unwrapped,
qtdeclarative,
qtbase,
}:
mkKdeDerivation rec {
pname = "mpvqt";
version = "1.1.1";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "libraries";
repo = "mpvqt";
tag = "v${version}";
hash = "sha256-qscubUiej/OqQI+V9gxQb7eVa3L2FJ5koqgXFoBw8tU=";
};
extraBuildInputs = [ qtdeclarative ];
extraPropagatedBuildInputs = [ mpv-unwrapped ];
extraCmakeFlags = [ "-DQt6_DIR=${qtbase}/lib/cmake/Qt6" ];
meta.license = with lib.licenses; [
bsd2
bsd3
cc-by-sa-40
cc0
lgpl21Only
lgpl3Only
lgpl3Plus
mit
];
}