obs-studio: 31.0.4 -> 31.1.0 (#423434)

authored by

Franz Pletz and committed by
GitHub
2023ab05 ef4c7277

+9 -7
+9 -7
pkgs/applications/video/obs-studio/default.nix
··· 60 60 libvpl, 61 61 qrcodegencpp, 62 62 nix-update-script, 63 + extra-cmake-modules, 63 64 }: 64 65 65 66 let 66 67 inherit (lib) optional optionals; 67 68 68 69 cef = cef-binary.overrideAttrs (oldAttrs: { 69 - version = "127.3.5"; 70 + version = "138.0.17"; 70 71 __intentionallyOverridingVersion = true; # `cef-binary` uses the overridden `srcHash` values in its source FOD 71 - gitRevision = "114ea2a"; 72 - chromiumVersion = "127.0.6533.120"; 72 + gitRevision = "ac9b751"; 73 + chromiumVersion = "138.0.7204.97"; 73 74 74 75 srcHash = 75 76 { 76 - aarch64-linux = "sha256-s8dR97rAO0mCUwbpYnPWyY3t8movq05HhZZKllhZdBs="; 77 - x86_64-linux = "sha256-57E7bZKpViWno9W4AaaSjL9B4uxq+rDXAou1tsiODUg="; 77 + aarch64-linux = "sha256-kdO7c9oUfv0HK8wTmvYzw9S6EapnSGEQNCGN9D1JSL0="; 78 + x86_64-linux = "sha256-3qgIhen6l/kxttyw0z78nmwox62riVhlmFSGPkUot7g="; 78 79 } 79 80 .${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}"); 80 81 }); 81 82 in 82 83 stdenv.mkDerivation (finalAttrs: { 83 84 pname = "obs-studio"; 84 - version = "31.0.4"; 85 + version = "31.1.0"; 85 86 86 87 src = fetchFromGitHub { 87 88 owner = "obsproject"; 88 89 repo = "obs-studio"; 89 90 rev = finalAttrs.version; 90 - hash = "sha256-YxBPVXin8oJlo++oJogY1WMamIJmRqtSmKZDBsIZPU4="; 91 + hash = "sha256-espGKoKldgjWoCEE+Xor7+N5N86HvWCf0V18tb8GaC8="; 91 92 fetchSubmodules = true; 92 93 }; 93 94 ··· 107 108 pkg-config 108 109 wrapGAppsHook3 109 110 wrapQtAppsHook 111 + extra-cmake-modules 110 112 ] 111 113 ++ optional scriptingSupport swig 112 114 ++ optional cudaSupport autoAddDriverRunpath;