Loading pkgs/by-name/br/brave/make-brave.nix +207 −132 Original line number Diff line number Diff line { lib, stdenv, fetchurl, buildPackages , alsa-lib , at-spi2-atk , at-spi2-core , atk , cairo , cups , dbus , dpkg , expat , fontconfig , freetype , gdk-pixbuf , glib , adwaita-icon-theme , gsettings-desktop-schemas , gtk3 , gtk4 , qt6 , libX11 , libXScrnSaver , libXcomposite , libXcursor , libXdamage , libXext , libXfixes , libXi , libXrandr , libXrender , libXtst , libdrm , libkrb5 , libuuid , libxkbcommon , libxshmfence , mesa , nspr , nss , pango , pipewire , snappy , udev , wayland , xdg-utils , coreutils , xorg , zlib { lib, stdenv, fetchurl, buildPackages, alsa-lib, at-spi2-atk, at-spi2-core, atk, cairo, cups, dbus, dpkg, expat, fontconfig, freetype, gdk-pixbuf, glib, adwaita-icon-theme, gsettings-desktop-schemas, gtk3, gtk4, qt6, libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, libdrm, libkrb5, libuuid, libxkbcommon, libxshmfence, mesa, nspr, nss, pango, pipewire, snappy, udev, wayland, xdg-utils, coreutils, xorg, zlib, # command line arguments which are always set e.g "--disable-gpu" , commandLineArgs ? "" commandLineArgs ? "", # Necessary for USB audio devices. , pulseSupport ? stdenv.hostPlatform.isLinux , libpulseaudio pulseSupport ? stdenv.hostPlatform.isLinux, libpulseaudio, # For GPU acceleration support on Wayland (without the lib it doesn't seem to work) , libGL libGL, # For video acceleration via VA-API (--enable-features=VaapiVideoDecoder,VaapiVideoEncoder) , libvaSupport ? stdenv.hostPlatform.isLinux , libva , enableVideoAcceleration ? libvaSupport libvaSupport ? stdenv.hostPlatform.isLinux, libva, enableVideoAcceleration ? libvaSupport, # For Vulkan support (--enable-features=Vulkan); disabled by default as it seems to break VA-API , vulkanSupport ? false , addDriverRunpath , enableVulkan ? vulkanSupport vulkanSupport ? false, addDriverRunpath, enableVulkan ? vulkanSupport, }: { pname , version , hash , url , platform { pname, version, hash, url, platform, }: let inherit (lib) optional optionals makeLibraryPath makeSearchPathOutput makeBinPath optionalString strings escapeShellArg; inherit (lib) optional optionals makeLibraryPath makeSearchPathOutput makeBinPath optionalString strings escapeShellArg ; deps = [ alsa-lib at-spi2-atk at-spi2-core atk cairo cups dbus expat fontconfig freetype gdk-pixbuf glib gtk3 gtk4 libdrm libX11 libGL libxkbcommon libXScrnSaver libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libxshmfence libXtst libuuid mesa nspr nss pango pipewire udev wayland xorg.libxcb zlib snappy libkrb5 qt6.qtbase ] ++ optional pulseSupport libpulseaudio ++ optional libvaSupport libva; alsa-lib at-spi2-atk at-spi2-core atk cairo cups dbus expat fontconfig freetype gdk-pixbuf glib gtk3 gtk4 libdrm libX11 libGL libxkbcommon libXScrnSaver libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libxshmfence libXtst libuuid mesa nspr nss pango pipewire udev wayland xorg.libxcb zlib snappy libkrb5 qt6.qtbase ] ++ optional pulseSupport libpulseaudio ++ optional libvaSupport libva; rpath = makeLibraryPath deps + ":" + makeSearchPathOutput "lib" "lib64" deps; binpath = makeBinPath deps; enableFeatures = optionals enableVideoAcceleration [ "VaapiVideoDecoder" "VaapiVideoEncoder" ] enableFeatures = optionals enableVideoAcceleration [ "VaapiVideoDecoder" "VaapiVideoEncoder" ] ++ optional enableVulkan "Vulkan"; disableFeatures = [ "OutdatedBuildDetector" ] # disable automatic updates disableFeatures = [ "OutdatedBuildDetector" ] # disable automatic updates # The feature disable is needed for VAAPI to work correctly: https://github.com/brave/brave-browser/issues/20935 ++ optionals enableVideoAcceleration [ "UseChromeOSDirectVideoDecoder" ]; in Loading @@ -120,7 +172,10 @@ stdenv.mkDerivation { buildInputs = [ # needed for GSETTINGS_SCHEMAS_PATH glib gsettings-desktop-schemas gtk3 gtk4 glib gsettings-desktop-schemas gtk3 gtk4 # needed for XDG_ICON_DIRS adwaita-icon-theme Loading Loading @@ -181,13 +236,22 @@ stdenv.mkDerivation { gappsWrapperArgs+=( --prefix LD_LIBRARY_PATH : ${rpath} --prefix PATH : ${binpath} --suffix PATH : ${lib.makeBinPath [ xdg-utils coreutils ]} ${optionalString (enableFeatures != []) '' --suffix PATH : ${ lib.makeBinPath [ xdg-utils coreutils ] } ${ optionalString (enableFeatures != [ ]) '' --add-flags "--enable-features=${strings.concatStringsSep "," enableFeatures}\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+,WaylandWindowDecorations}}" ''} ${optionalString (disableFeatures != []) '' '' } ${ optionalString (disableFeatures != [ ]) '' --add-flags "--disable-features=${strings.concatStringsSep "," disableFeatures}" ''} '' } --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto}}" ${optionalString vulkanSupport '' --prefix XDG_DATA_DIRS : "${addDriverRunpath.driverLink}/share" Loading @@ -206,7 +270,9 @@ stdenv.mkDerivation { meta = { homepage = "https://brave.com/"; description = "Privacy-oriented browser for Desktop and Laptop computers"; changelog = "https://github.com/brave/brave-browser/blob/master/CHANGELOG_DESKTOP.md#" + lib.replaceStrings [ "." ] [ "" ] version; changelog = "https://github.com/brave/brave-browser/blob/master/CHANGELOG_DESKTOP.md#" + lib.replaceStrings [ "." ] [ "" ] version; longDescription = '' Brave browser blocks the ads and trackers that slow you down, chew up your bandwidth, and invade your privacy. Brave lets you Loading @@ -214,8 +280,17 @@ stdenv.mkDerivation { ''; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.mpl20; maintainers = with lib.maintainers; [ uskudnik rht jefflabonte nasirhm buckley310 ]; platforms = [ "aarch64-linux" "x86_64-linux" ]; maintainers = with lib.maintainers; [ uskudnik rht jefflabonte nasirhm buckley310 ]; platforms = [ "aarch64-linux" "x86_64-linux" ]; mainProgram = "brave"; }; } Loading
pkgs/by-name/br/brave/make-brave.nix +207 −132 Original line number Diff line number Diff line { lib, stdenv, fetchurl, buildPackages , alsa-lib , at-spi2-atk , at-spi2-core , atk , cairo , cups , dbus , dpkg , expat , fontconfig , freetype , gdk-pixbuf , glib , adwaita-icon-theme , gsettings-desktop-schemas , gtk3 , gtk4 , qt6 , libX11 , libXScrnSaver , libXcomposite , libXcursor , libXdamage , libXext , libXfixes , libXi , libXrandr , libXrender , libXtst , libdrm , libkrb5 , libuuid , libxkbcommon , libxshmfence , mesa , nspr , nss , pango , pipewire , snappy , udev , wayland , xdg-utils , coreutils , xorg , zlib { lib, stdenv, fetchurl, buildPackages, alsa-lib, at-spi2-atk, at-spi2-core, atk, cairo, cups, dbus, dpkg, expat, fontconfig, freetype, gdk-pixbuf, glib, adwaita-icon-theme, gsettings-desktop-schemas, gtk3, gtk4, qt6, libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, libdrm, libkrb5, libuuid, libxkbcommon, libxshmfence, mesa, nspr, nss, pango, pipewire, snappy, udev, wayland, xdg-utils, coreutils, xorg, zlib, # command line arguments which are always set e.g "--disable-gpu" , commandLineArgs ? "" commandLineArgs ? "", # Necessary for USB audio devices. , pulseSupport ? stdenv.hostPlatform.isLinux , libpulseaudio pulseSupport ? stdenv.hostPlatform.isLinux, libpulseaudio, # For GPU acceleration support on Wayland (without the lib it doesn't seem to work) , libGL libGL, # For video acceleration via VA-API (--enable-features=VaapiVideoDecoder,VaapiVideoEncoder) , libvaSupport ? stdenv.hostPlatform.isLinux , libva , enableVideoAcceleration ? libvaSupport libvaSupport ? stdenv.hostPlatform.isLinux, libva, enableVideoAcceleration ? libvaSupport, # For Vulkan support (--enable-features=Vulkan); disabled by default as it seems to break VA-API , vulkanSupport ? false , addDriverRunpath , enableVulkan ? vulkanSupport vulkanSupport ? false, addDriverRunpath, enableVulkan ? vulkanSupport, }: { pname , version , hash , url , platform { pname, version, hash, url, platform, }: let inherit (lib) optional optionals makeLibraryPath makeSearchPathOutput makeBinPath optionalString strings escapeShellArg; inherit (lib) optional optionals makeLibraryPath makeSearchPathOutput makeBinPath optionalString strings escapeShellArg ; deps = [ alsa-lib at-spi2-atk at-spi2-core atk cairo cups dbus expat fontconfig freetype gdk-pixbuf glib gtk3 gtk4 libdrm libX11 libGL libxkbcommon libXScrnSaver libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libxshmfence libXtst libuuid mesa nspr nss pango pipewire udev wayland xorg.libxcb zlib snappy libkrb5 qt6.qtbase ] ++ optional pulseSupport libpulseaudio ++ optional libvaSupport libva; alsa-lib at-spi2-atk at-spi2-core atk cairo cups dbus expat fontconfig freetype gdk-pixbuf glib gtk3 gtk4 libdrm libX11 libGL libxkbcommon libXScrnSaver libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libxshmfence libXtst libuuid mesa nspr nss pango pipewire udev wayland xorg.libxcb zlib snappy libkrb5 qt6.qtbase ] ++ optional pulseSupport libpulseaudio ++ optional libvaSupport libva; rpath = makeLibraryPath deps + ":" + makeSearchPathOutput "lib" "lib64" deps; binpath = makeBinPath deps; enableFeatures = optionals enableVideoAcceleration [ "VaapiVideoDecoder" "VaapiVideoEncoder" ] enableFeatures = optionals enableVideoAcceleration [ "VaapiVideoDecoder" "VaapiVideoEncoder" ] ++ optional enableVulkan "Vulkan"; disableFeatures = [ "OutdatedBuildDetector" ] # disable automatic updates disableFeatures = [ "OutdatedBuildDetector" ] # disable automatic updates # The feature disable is needed for VAAPI to work correctly: https://github.com/brave/brave-browser/issues/20935 ++ optionals enableVideoAcceleration [ "UseChromeOSDirectVideoDecoder" ]; in Loading @@ -120,7 +172,10 @@ stdenv.mkDerivation { buildInputs = [ # needed for GSETTINGS_SCHEMAS_PATH glib gsettings-desktop-schemas gtk3 gtk4 glib gsettings-desktop-schemas gtk3 gtk4 # needed for XDG_ICON_DIRS adwaita-icon-theme Loading Loading @@ -181,13 +236,22 @@ stdenv.mkDerivation { gappsWrapperArgs+=( --prefix LD_LIBRARY_PATH : ${rpath} --prefix PATH : ${binpath} --suffix PATH : ${lib.makeBinPath [ xdg-utils coreutils ]} ${optionalString (enableFeatures != []) '' --suffix PATH : ${ lib.makeBinPath [ xdg-utils coreutils ] } ${ optionalString (enableFeatures != [ ]) '' --add-flags "--enable-features=${strings.concatStringsSep "," enableFeatures}\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+,WaylandWindowDecorations}}" ''} ${optionalString (disableFeatures != []) '' '' } ${ optionalString (disableFeatures != [ ]) '' --add-flags "--disable-features=${strings.concatStringsSep "," disableFeatures}" ''} '' } --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto}}" ${optionalString vulkanSupport '' --prefix XDG_DATA_DIRS : "${addDriverRunpath.driverLink}/share" Loading @@ -206,7 +270,9 @@ stdenv.mkDerivation { meta = { homepage = "https://brave.com/"; description = "Privacy-oriented browser for Desktop and Laptop computers"; changelog = "https://github.com/brave/brave-browser/blob/master/CHANGELOG_DESKTOP.md#" + lib.replaceStrings [ "." ] [ "" ] version; changelog = "https://github.com/brave/brave-browser/blob/master/CHANGELOG_DESKTOP.md#" + lib.replaceStrings [ "." ] [ "" ] version; longDescription = '' Brave browser blocks the ads and trackers that slow you down, chew up your bandwidth, and invade your privacy. Brave lets you Loading @@ -214,8 +280,17 @@ stdenv.mkDerivation { ''; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.mpl20; maintainers = with lib.maintainers; [ uskudnik rht jefflabonte nasirhm buckley310 ]; platforms = [ "aarch64-linux" "x86_64-linux" ]; maintainers = with lib.maintainers; [ uskudnik rht jefflabonte nasirhm buckley310 ]; platforms = [ "aarch64-linux" "x86_64-linux" ]; mainProgram = "brave"; }; }