kdePackages: use unwrapped mpv everywhere

This commit is contained in:
K900 2024-05-10 16:44:14 +03:00
parent 24cd8d3422
commit 9064e5d482
3 changed files with 6 additions and 6 deletions

View File

@ -6,14 +6,14 @@
purpose,
qqc2-desktop-style,
pkg-config,
mpv,
mpv-unwrapped,
yt-dlp,
}:
mkKdeDerivation {
pname = "plasmatube";
extraNativeBuildInputs = [pkg-config];
extraBuildInputs = [qtquick3d qtsvg mpv qqc2-desktop-style];
extraBuildInputs = [qtquick3d qtsvg mpv-unwrapped qqc2-desktop-style];
extraPropagatedBuildInputs = [purpose];
qtWrapperArgs = ["--prefix" "PATH" ":" (lib.makeBinPath [ yt-dlp ])];

View File

@ -5,7 +5,7 @@
qtsvg,
qtwebsockets,
qtwebview,
mpv,
mpv-unwrapped,
kitemmodels,
sonnet,
}:
@ -13,6 +13,6 @@ mkKdeDerivation {
pname = "tokodon";
extraNativeBuildInputs = [pkg-config];
extraBuildInputs = [qtmultimedia qtsvg qtwebsockets qtwebview mpv kitemmodels sonnet];
extraBuildInputs = [qtmultimedia qtsvg qtwebsockets qtwebview mpv-unwrapped kitemmodels sonnet];
meta.mainProgram = "tokodon";
}

View File

@ -2,7 +2,7 @@
lib,
mkKdeDerivation,
fetchFromGitLab,
mpv,
mpv-unwrapped,
qtdeclarative,
}:
mkKdeDerivation rec {
@ -18,7 +18,7 @@ mkKdeDerivation rec {
};
extraBuildInputs = [qtdeclarative];
extraPropagatedBuildInputs = [mpv];
extraPropagatedBuildInputs = [mpv-unwrapped];
meta.license = with lib.licenses; [bsd2 bsd3 cc-by-sa-40 cc0 lgpl21Only lgpl3Only lgpl3Plus mit];
}