Squash merge redo into master
This commit is contained in:
parent
d9fa7610df
commit
05fa2b59f2
15 changed files with 268 additions and 114 deletions
|
|
@ -1,5 +1,25 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
ffmpeg_7-full
|
||||
{pkgs, ...}: let
|
||||
x11ffmpeg = pkgs.ffmpeg-full.overrideAttrs (old: {
|
||||
buildInputs =
|
||||
(old.buildInputs or [])
|
||||
++ [
|
||||
pkgs.xorg.libxcb
|
||||
pkgs.xorg.libX11
|
||||
pkgs.xorg.xcbutil
|
||||
pkgs.xorg.xcbutilimage
|
||||
pkgs.xorg.xcbutilkeysyms
|
||||
pkgs.xorg.xcbutilwm
|
||||
];
|
||||
configureFlags =
|
||||
(old.configureFlags or [])
|
||||
++ [
|
||||
"--enable-libxcb"
|
||||
"--enable-libxcb-shm"
|
||||
"--enable-libxcb-xfixes"
|
||||
];
|
||||
});
|
||||
in {
|
||||
home.packages = [
|
||||
x11ffmpeg
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue