aws-workspaces: add missing ffmpeg dependency (#456929)

This commit is contained in:
Pol Dellaiera
2025-10-30 19:32:28 +00:00
committed by GitHub

View File

@@ -1,8 +1,10 @@
{ {
lib,
callPackage, callPackage,
writeShellApplication, writeShellApplication,
buildFHSEnv, buildFHSEnv,
webkitgtk_4_1, webkitgtk_4_1,
ffmpeg,
gtk3, gtk3,
pango, pango,
atk, atk,
@@ -33,14 +35,12 @@ let
echo "Release: 22.04" echo "Release: 22.04"
''; '';
}; };
pname = "aws-workspaces";
in in
buildFHSEnv { buildFHSEnv {
inherit pname; pname = "aws-workspaces";
inherit (workspacesclient) version; inherit (workspacesclient) version;
runScript = "${workspacesclient}/bin/workspacesclient"; runScript = lib.getExe workspacesclient;
includeClosures = true; includeClosures = true;
@@ -49,6 +49,7 @@ buildFHSEnv {
custom_lsb_release custom_lsb_release
webkitgtk_4_1 webkitgtk_4_1
gtk3 gtk3
ffmpeg
pango pango
atk atk
cairo cairo
@@ -64,7 +65,7 @@ buildFHSEnv {
# expected executable doesn't match the name of this package # expected executable doesn't match the name of this package
extraInstallCommands = '' extraInstallCommands = ''
mv $out/bin/${pname} $out/bin/workspacesclient mv $out/bin/aws-workspaces $out/bin/${workspacesclient.meta.mainProgram}
ln -s ${workspacesclient}/share $out/ ln -s ${workspacesclient}/share $out/
''; '';