programs: ship v4l-utils, for debugging the Pinephone camera pipeline

This commit is contained in:
2024-09-10 05:00:15 +00:00
parent 90df023be0
commit d3fa4e6e7c
3 changed files with 10 additions and 0 deletions

View File

@@ -328,6 +328,7 @@ in
# "tdesktop" # broken on phosh
# "tokodon"
"tuba" # mastodon/pleroma client (stores pw in keyring)
"v4l-utils" # for `media-ctl`; to debug cameras: <https://wiki.postmarketos.org/wiki/PINE64_PinePhone_(pine64-pinephone)#Cameras>
"vulkan-tools" # vulkaninfo
# "whalebird" # pleroma client (Electron). input is broken on phosh.
"xdg-terminal-exec"

View File

@@ -178,6 +178,7 @@
./tor-browser.nix
./tuba.nix
./unl0kr
./v4l-utils.nix
./via.nix
./visidata.nix
./vlc.nix

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
sane.programs.v4l-utils = {
packageUnwrapped = pkgs.v4l-utils.override {
withGUI = false; #< XXX(2024-09-09): gui does not cross compile due to qtbase / wrapQtAppsHook
};
};
}