gst-launch: ship

This commit is contained in:
2024-09-10 07:40:48 +00:00
parent eb6c0acf11
commit e167cbbbb4
3 changed files with 8 additions and 0 deletions

View File

@@ -303,6 +303,7 @@ in
"gnome-weather"
"gpodder"
"gst-device-monitor" # for debugging audio/video
"gst-launch" # for debugging audio/video
# "gthumb"
# "lemoa" # lemmy app
"libcamera" # for `cam` binary (useful for debugging cameras)

View File

@@ -77,6 +77,7 @@
./gps-share.nix
./grimshot.nix
./gst-device-monitor.nix
./gst-launch.nix
./gthumb.nix
./gvfs.nix
./handbrake.nix

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
sane.programs.gst-launch = {
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.gst_all_1.gstreamer "gst-launch-1.0";
};
}