mirror of
https://github.com/Expand-sys/zen-browser-flake
synced 2025-12-15 22:52:12 +11:00
Update to 1.0.0-a.28, fix VAAPI decoding and Pipewire (#8)
* Update to 1.0.0-a.28
* Fix VAAPI decoding
Also adds cups because why not 🤷
* Add Pipewire
This commit is contained in:
parent
2224fbac59
commit
997ad29c86
1 changed files with 7 additions and 4 deletions
11
flake.nix
11
flake.nix
|
|
@ -8,15 +8,15 @@
|
||||||
outputs = { self, nixpkgs }:
|
outputs = { self, nixpkgs }:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
version = "1.0.0-a.27";
|
version = "1.0.0-a.28";
|
||||||
downloadUrl = {
|
downloadUrl = {
|
||||||
"specific" = {
|
"specific" = {
|
||||||
url = "https://github.com/zen-browser/desktop/releases/download/${version}/zen.linux-specific.tar.bz2";
|
url = "https://github.com/zen-browser/desktop/releases/download/${version}/zen.linux-specific.tar.bz2";
|
||||||
sha256 = "sha256:0vmn10qpr96b4i8j24sa6ipg3fcxiiigkjwclbr5fknkfj3r6ds7";
|
sha256 = "sha256:1vq7k3qwfdx70frng5p308zwnih86bwz75zpzcb1lbf3xsliz702";
|
||||||
};
|
};
|
||||||
"generic" = {
|
"generic" = {
|
||||||
url = "https://github.com/zen-browser/desktop/releases/download/${version}/zen.linux-generic.tar.bz2";
|
url = "https://github.com/zen-browser/desktop/releases/download/${version}/zen.linux-generic.tar.bz2";
|
||||||
sha256 = "sha256:1801pcvvmmdz5drqvxs95yzij099mhq7cnw663dna4kcn2nqwvni";
|
sha256 = "sha256:154q0yl7s8v87dcpig8ixl607iqn1iv8mrlb82cldb1xn5gvlw5x";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -27,8 +27,11 @@
|
||||||
runtimeLibs = with pkgs; [
|
runtimeLibs = with pkgs; [
|
||||||
libGL stdenv.cc.cc fontconfig libxkbcommon zlib freetype
|
libGL stdenv.cc.cc fontconfig libxkbcommon zlib freetype
|
||||||
gtk3 libxml2 dbus xcb-util-cursor alsa-lib pango atk cairo gdk-pixbuf glib
|
gtk3 libxml2 dbus xcb-util-cursor alsa-lib pango atk cairo gdk-pixbuf glib
|
||||||
|
udev libva mesa libnotify cups pciutils
|
||||||
|
ffmpeg libglvnd pipewire
|
||||||
] ++ (with pkgs.xorg; [
|
] ++ (with pkgs.xorg; [
|
||||||
libxcb libX11 libXcursor libXrandr libXi libXext libXcomposite libXdamage libXfixes
|
libxcb libX11 libXcursor libXrandr libXi libXext libXcomposite libXdamage
|
||||||
|
libXfixes libXScrnSaver
|
||||||
]);
|
]);
|
||||||
|
|
||||||
mkZen = { variant }:
|
mkZen = { variant }:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue